javascript - Scroll on page with offset -



javascript - Scroll on page with offset -

i using next script smooth scroll effect on single page website:

$('a').click(function(){ $('html, body').animate({ scrolltop: $( $.attr(this, 'href') ).offset().top }, 500); homecoming false; });

how can integrate minus 100px offset script? sorry im jquery newbie... help , best regards.

add - 100 scrolltop value

$('a').click(function(){ $('html, body').animate({ scrolltop: $( $.attr(this, 'href') ).offset().top - 100 }, 500); homecoming false; });

javascript jquery scroll

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -