> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: siteWindow.scrollBy(x: number, y: number) # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/window/scroll-by.md # Method Description: Scrolls a page by the specified number of pixels. The `x` and `y` parameters determine the number of horizontal and vertical pixels to scroll the current page. Negative numbers scroll up or to the left and positive numbers scroll down or to the right. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Scroll a page by the specified number of pixels ```javascript import { window } from '@wix/site-window'; // ... await window.scrollBy(100, 500); ``` ## Scroll the page by the specified number of pixels and log message when done ```javascript import { window } from '@wix/site-window'; // ... window.scrollBy(100, 500) .then( ( ) => { console.log("Done with scroll"); } ); ```