0
我需要刷新div
或jQuery函數後,從左列表中選擇一個輪播從左列表中加載時滾動左滾動但功能執行時,下一個滾動停止。如何刷新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
我沒有注意到這個播放功能 - 它的工作原理!謝謝 – user743328
@ user743328很高興能幫到你! :)由於問題已解決,請勾選正確的答案以解決此問題_solved_! – Zuul