Hi there, new to wix here,
Just wanted to see if there was a way to have visitors open the website and the website to automatically scroll down at a certain speed and when reaching the bottom, jumps all the way back to the top of the page and start scrolling down again?
Any help would be greatly appreciated!
Automatically you mean?
The webpage starts scrolling down on its own without user input? If that makes sense?
Hey, you can use the scrollTo.
import wixWindow from 'wix-window'; // ... wixWindow.scrollTo(100, 500) .then( ( ) => { console.log("Done with scrolling"); });
More info in the docs: wix-window-frontend - Velo API Reference - Wix.com
Thanks! I’ll give it a go!