> 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: scrollBy(x: number, y: number) # Method package: wixWindowFrontend # Method menu location: wixWindowFrontend --> scrollBy # Method Link: https://dev.wix.com/docs/velo/apis/wix-window-frontend/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 Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Scroll a page by the specified number of pixels ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... wixWindowFrontend.scrollBy(100, 500); ``` ## Scroll the page by the specified number of pixels and log message when done ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... wixWindowFrontend.scrollBy(100, 500) .then( ( ) => { console.log("Done with scroll"); } ); ``` ---