Friday, 15 March 2013

javascript - click to scroller, need a few pixels added -



javascript - click to scroller, need a few pixels added -

i experimenting nav takes section smooth scroll, works have sticky nav covers section heading. need add together 40 pixels top of each section when clicked.

what need add

$('#about-me').click( function() { $('html, body').animate({ scrolltop: $('.about-me').offset().top }, 900); });

thanks in advance!

try this, math taking height of navigation menu.

$('#about-me').click( function() { $('html, body').animate({ scrolltop: $('.about-me').offset().top-$('#navigation').height() }, 900); });

javascript jquery

No comments:

Post a Comment