Advertisement
oxguy3

Untitled

Jul 10th, 2015
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(function() {
  2. $('a.page-scroll').bind('click', function(event) {
  3. var $anchor = $(this);
  4. var scrollTop = $($anchor.attr('href')).offset().top;
  5. if ($anchor.attr('href')=="#menu") scrollTop -= 50;
  6. $('html, body').stop().animate({
  7. scrollTop: scrollTop
  8. }, 1500, 'easeInOutExpo');
  9. event.preventDefault();
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement