Ayou Ub
Ayou Ub

Reputation: 1

jQuery Cycle2 slide disapear when using "fade animation"

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

Answers (1)

Vural
Vural

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>

UPDATE

Using jquery 3.0.0 fix the "Fade Animation Bug"

Upvotes: 0

Related Questions