jacodelucia
5/11/2016 - 5:17 PM

JS - Scroll anim au click

JS - Scroll anim au click

/************************************************************************************************/
/* SCROLL DES PAGES */
/************************************************************************************************/
	
	$('.scrollTo, .scrollLink').click(function(){
		var thisHref = $(this).attr('href');
		var cible = $(thisHref);
		var toTop = cible.offset().top - headerH;
		$('body, html').animate({scrollTop: toTop}, 1000);
		
		return false;
	});