Skip to content

Instantly share code, notes, and snippets.

@rodan888
Created September 17, 2015 13:51
Show Gist options
  • Save rodan888/940d0581ae0462d7fc08 to your computer and use it in GitHub Desktop.
Save rodan888/940d0581ae0462d7fc08 to your computer and use it in GitHub Desktop.
var pageScroll = {
itemAc: $('nav ul li,menu ul li'),
addClas: function(el){
pageScroll.itemAc.removeClass('active');
$(el).addClass('active');
},
init: function(){
pageScroll.itemAc.on('click',function(){
pageScroll.addClas(this);
var pos = $($(this).attr('data-id')).offset().top;
$('body').animate({scrollTop: pos}, 1000);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment