setTimeout(function(){
$('html,body').animate({ scrollTop: $('#section2').offset().top }, 1000);
}, 4000);
为什么以上代码无法使用chrome浏览器?
以上代码在Mozilla firefox浏览器中运行,而不是在谷歌浏览器浏览器中工作。
我有一个6全屏div,其中id为section1,section2,... section6。
我想将div自动向下滚动section1 div到section2 div。
请为我建议以上代码。