0
我有一個自動滾動欄腳本,使圖像向右滾動。我想在結束後重復它。請幫忙!重複水平自動滾動條
<div class="scrolls">
<div>
<img src="img1" height="200"/>
<img src="img2" height="200"/>
<img src="img3" height="200"/>
</div>
</div>
<script>
$(document).ready(function() {
var sL = 4000;
$('.scrolls').animate({
scrollLeft : sL
},100000, 'linear');
$(".scrolls").on("click",function(){
$(this).stop(true,false);
});
$(".scrolls").on("mouseenter",function(){
$(this).stop(true,false);
});
$(".scrolls").on("mouseleave",function(){
$(this).animate({
scrollLeft : sL
},100000, 'linear');
});
})
</script>
請嘗試使用片段是可能的。 – Keith
@Keith不是一個片段的粉絲(我的瀏覽器安全策略無論如何都會阻止它們),但我保證將來我會繼續使用片段。 –