2013-07-10 223 views

回答

2

有一個公共的方法startAutoScrolling,結合起來,與setTimeout

<script type="text/javascript"> 
$(document).ready(function() { 
    $("#makeMeScrollable").smoothDivScroll({ 
     mousewheelScrolling: "allDirections", 
     manualContinuousScrolling: true 
    }); 

    setTimeout(function() { 
     $("#makeMeScrollable").smoothDivScroll("startAutoScrolling"); 
    }, 2000); 
}); 
</script> 
+0

效果很不錯!謝謝,@Mati。 – Brightweb

+0

@Brightweb,你可以接受。 – Mati