awaveWordPress
3/14/2018 - 3:40 PM

ScrollTop function

$('span.next-section').bind('click',function(event){
  	var $anchor = $('.landing-component');
  	$('html, body').stop().animate({
  		  scrollTop: $anchor.offset().top
  	}, 500,'easeInOutExpo');
  	event.preventDefault();
});