Это работает через div, находит div с нужным классом, затем скрипт снимает класс с этого div`a, и добавляет его на следующий.
Для работы скрипта нужно сделать 2 css стиля
первый с display:block
второй с display:none
1
2
3
4
5
6
7
8
9
10
11
12
13
| jQuery(document).ready(function($) {
setInterval("autoSlide()", 10000);
});
function autoSlide(){
var nextidx = (parseInt(jQuery("#slideshow .current").index() 1) == jQuery("#slideshow .slide").length) ? 0 : parseInt(jQuery("#slideshow .current").index() 1);
jQuery("#slideshow .current").fadeOut('slow', function(){
jQuery(this).removeClass('current');
jQuery("#slideshow .slide").eq(nextidx).fadeIn('slow', function(){
jQuery(this).addClass('current');
});
});
} |
|