在我的测试网站http://snapsite.byethost22.com上(或通过http://robinvandernoord.nl)我试图在几秒钟后自动滚动一点点。
它应该在几秒内滚动到#image
,然后流畅地滚动。
我尝试使用meta refresh
,但它保持清爽,并且不顺畅。
所以我的问题是:我可以用另一种方式吗?
答案 0 :(得分:0)
超级简单,使用:smooth-scroll.js
如何使用:Read Me
答案 1 :(得分:0)
你可以用
来做setTimeout(
function() {
$("html, body").animate({
scrollTop: $("#image img").offset().top
});
},
2000);
阅读此答案以获取更多信息:jQuery scroll to element和此:Executing JavaScript after X seconds