xxxxxxxxxx
jQuery(document).ready(function( $ ){
jQuery('.view-more-button').on('click', function() {
var windowHeight = jQuery(window).height();
var scrollPosition = jQuery(window).scrollTop();
var centerPosition = scrollPosition + (windowHeight /-1);
jQuery('html, body').animate({ scrollTop: centerPosition }, 'slow');
});
});