sass-site/source/assets/js/components/smooth-scroll.js
Steven Degutis dfc061c580 Speed up scrolling
Please? Pretty please?
2014-12-11 10:01:39 -06:00

17 lines
480 B
JavaScript

$(function() {
$('.anchors a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 200);
return false;
}
}
});
});