website/js/minecraft.js

9 lines
281 B
JavaScript
Raw Normal View History

2014-10-17 21:59:45 +03:00
$(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();
});
2014-11-11 22:27:42 +02:00
});