From a similar question ...
You can animate scrolltop pages using jQuery .
$('html, body').animate({ scrollTop: $(".middle").offset().top }, 2000);
or
$('html, body').animate({ scrollTop: 700 }, 2000);
Page animation:
$('html, body').animate({ scrollTop: '+=700' }, 2000);
Page Animation:
$('html, body').animate({ scrollTop: '-=700' }, 2000);
See this site: http://papermashup.com/jquery-page-scrolling/
source share