JQuery Cycle Slideshow stops working with 3+ photos

I have a slideshow with the Previous and Next buttons that work fine with 3 <li>, but as soon as I add the fourth (or more) next button and the previous button, they don’t appear and they don’t work (even if they were invisible). Any ideas?

Sample page: http://newsite.702wedding.com/las-vegas-wedding-packages.aspx

using jQuery Colorbox and Cycle.

Please see what happens.

+3
source share
1 answer

Your problem is this:

$("#slideshow").hover(function() {
    $("ul#vig").fadeIn();
}, function() {
    $("ul#vig").fadeOut();
});​

z-index of ul#vig - , 5, , , . 15 , .

+1

Source: https://habr.com/ru/post/1767614/


All Articles