Scrolls the document in the window by the given amount.
window.scrollBy(X, Y);
X
is the offset in pixels to scroll horizontally.Y
is the offset in pixels to scroll vertically.Positive co-ordinates will scroll to the right and down the page. Negative values will scroll to the left and up the page.
// scroll one page window.scrollBy(0, window.innerHeight);
window.scrollBy scrolls by a particular amount where window.scroll scrolls to an absolute position in the document. See also window.scrollByLines, window.scrollByPages
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module The definition of 'window.scrollBy()' in that specification. | Working Draft | Initial definition. |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/scrollBy