website/js/minecraft.js
2014-11-11 22:27:42 +02:00

9 lines
No EOL
281 B
JavaScript

$(function() {
$('.page-scroll a').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500, 'easeInOutExpo');
event.preventDefault();
});
});