You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a custom transition that fade in the next slide on top. The curr slide should not fade out before the next is faded completely in on top. This is what I thought would work but visibility is playing me.
Any ideas? Thank you.
$.fn.cycle.transitions.fadeInOnly={before: function(opts,curr,next,fwd){varcss=opts.API.getSlideOpts(opts.nextSlide).slideCss||{};// Rezindexes the slide deck, puts next on topopts.API.stackSlides(next,curr,fwd);opts.cssBefore={opacity: 0,visibility: 'visible'};opts.animIn={opacity: 1,visibility: 'visible'};opts.animOut={opacity: 1,visibility: 'visible'};}};
The text was updated successfully, but these errors were encountered:
I'm trying to create a custom transition that fade in the next slide on top. The curr slide should not fade out before the next is faded completely in on top. This is what I thought would work but visibility is playing me.
Any ideas? Thank you.
The text was updated successfully, but these errors were encountered: