當我使用下面的代碼時,它變得非常糟糕。Javascript動畫()滾動不能按預期工作
動畫完成後,我滾動並翻動頁面(文檔)。
$(document).ready(function(){
$(' .nav, .learn-more').click(function(event){
$('html, body').animate({
scrollTop: $("#"+event.target.id+".featurette").offset().top
}, 1000);
});
});
請參閱演示Codecademy。
您的意思是'$(文件).ready'不'(文件).ready'? – soktinpk 2014-08-30 20:59:07
歡迎來到StackOverflow。這是一個專業的問答網站。請訪問[如何問](http://stackoverflow.com/help/how-to-answer)網站。 – afzalex 2014-08-30 21:08:49