在javascript中定时滚动

时间:2011-02-18 12:32:05

标签: javascript jquery html timer scroll

我需要一个脚本,在没有按钮的情况下自动滚动浏览我的页面,我希望它每10秒向下滚动一次,然后在完成后返回顶部,我将如何在javascript中执行此操作?

谢谢, 利

1 个答案:

答案 0 :(得分:0)

您想要使用jquery scrollTo()插件和javascript setTimeout()函数的组合。你会做一些像(伪代码):

setTimeout(scrollMyPage, 10000)
{
    if (At bottom of the page)
    {
        scroll To Top
    }
    else
    {
        scroll down the height of the browser window/a page
    }
}