开发者

Moving the page

开发者 https://www.devze.com 2023-01-08 19:38 出处:网络
I need to move the page from top to bottom, just like it happens 开发者_JS百科in the best site of the world( stackoverflow), when we change the type of sorting of our questions, it moves the page.

I need to move the page from top to bottom, just like it happens 开发者_JS百科in the best site of the world( stackoverflow), when we change the type of sorting of our questions, it moves the page.

How can I get such an effect? I even don't know how to search for information about it, because don't know the keywords, so I decided to ask here :/

Thanks


Did you mean scrolling the page automatically? If so, have a look at:

jQuery ScrollTo plugin

See this demo to confirm if that is what you are looking for.


keywords: "scroll page to position using javascript" in particular, you want the window.scrollTo() method

window.scrollTo(x,y);

that exists in native JavaScript, or a jQuery method that wraps this (e.g. jQuery ScrollTo plugin).

0

精彩评论

暂无评论...
验证码 换一张
取 消