Reputation: 1
i've a problem in cycle2 pluging when i go to another page and comeback to my page sometimes and not always the slide disappear and show after a sec delay
<div class="cycle-slideshow"
data-cycle-fx="fadOut"
data-cycle-speed="500"
data-cycle-timeout="3000"
data-cycle-slides="> div"
>
<div class="profile-info">
econtent here
</div>
<div class="profile-info">
content here
</div>
</div>
Upvotes: 0
Views: 412
Reputation: 8748
This code should work:
<div class="cycle-slideshow"
data-cycle-fx="fadeOut"
data-cycle-speed="500"
data-cycle-timeout="3000"
data-cycle-slides="> div">
<div class="profile-info">
econtent here
</div>
<div class="profile-info">
content here
</div>
</div>
Using jquery 3.0.0 fix the "Fade Animation Bug"
Upvotes: 0