div
从左侧列表中的多个实例中选择轮播后,我需要刷新或 jQuery 函数,当页面加载时它会向左滚动,但是当执行函数时,下一个滚动器会停止。
代码是:
<script type="text/javascript">
$(function() {
$('#carousel_1').carouFredSel({
width: '100%',
auto: {
items: 1
},
prev: '#prev1',
next: '#next1'
});
$('#carousel_2').carouFredSel({
width: '100%',
auto: {
items: 1
},
prev: '#prev2',
next: '#next2'
});
$('#carousel_3').carouFredSel({
width: '100%',
auto: {
items: 1
},
prev: '#prev3',
next: '#next3'
});
var items = $('.list_switch>li>a').each(function () {
$(this).click(function () {
//remove previous class and add it to clicked tab
items.removeClass('current');
$(this).addClass('current');
//hide all content divs and show current one
$('.carousel').hide().eq(items.index($(this))).show('fast');
});
});
// select the first tab on page load
items[0].click();
});
</script>
演示页面: http ://blogillucent.alwaysdata.net/aaa/coolcarousel.html