好了,所以這裏的主要功能:JQuery,再次啓動一個函數。 。 。 。 ?動畫隊列
function updown(){
var bottom = $(document).height()-$(window).height();
//scroll to bottom. scroll to 0. and execute updown().
$('body')
.animate({scrollTop:bottom},20000)
.animate({scrollTop:0},2000,updown);
}
updown();
然後我用:
$('body').stop(true);
點擊一個按鈕來停止動畫隊列
我的問題是如何我會再次啓動動畫隊列嗎? 因此,例如$('body').play(true);
,如果你明白我的意思(雖然我知道它不那麼簡單)。 。 。
非常感謝您提供任何幫助!
我想你需要像暫停和恢復。如果是這樣,請看看:http://stackoverflow.com/questions/5586068/jquery-pause-resume-animate和http://stackoverflow.com/questions/3970835/pause-resume-jquery-animate –