Skip to content

Instantly share code, notes, and snippets.

View jwaldimer's full-sized avatar
🏠
Working from home

Jorge Gómez jwaldimer

🏠
Working from home
View GitHub Profile
scrool with delay effect to section with class .page-scroll in page
$(function() {
$('a.page-scroll').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 2500, 'easeInOutExpo');
event.preventDefault();
});
});