So im using the window.scrollby like this
<script>
function scrollWindowup() {
window.scrollBy(0,700)
}
function scrollWindowdown() {
window.scrollBy(0,-700) }
</script>
is there any way to animate it like move slowy or an offset or any other option ?
thanks in advance
From a similar question…
You can animate the
scrolltopof the page withjQuery.Or
Animating down a page:
Animating up a page:
See this site:
http://papermashup.com/jquery-page-scrolling/