fuckyourday/meetup/js/scrolling-nav.js

11 lines
349 B
JavaScript
Raw Normal View History

2024-03-24 20:08:23 -05:00
//jQuery for page scrolling feature - requires jQuery Easing plugin
$(function() {
$('a.page-scroll').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1200, 'easeInOutExpo');
event.preventDefault();
});
});