Try using JS:
function pageScroll() { window.scrollBy(0,50); scrolldelay = setTimeout('pageScroll()',100); } <body onLoad="pageScroll()">
You can see an example here .
For a CSS solution (like parallax), you can refer to this post.
See this answer for more information.
source share