14 lines
338 B
JavaScript
14 lines
338 B
JavaScript
// https://twitter.com/uixmat
|
|
|
|
function scrollNav() {
|
|
$('.nav a').click(function(){
|
|
$(".active").removeClass("active");
|
|
$(this).addClass("active");
|
|
|
|
$('html, body').stop().animate({
|
|
scrollTop: $($(this).attr('href')).offset().top - 160
|
|
}, 300);
|
|
return false;
|
|
});
|
|
}
|
|
scrollNav(); |