Advertisement
iGorNoiZe

Скролл

Jul 25th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $(function() {
  2. $('a[href^="#"]').click(function (){
  3. var elementClick = $(this).attr("href");
  4. var destination = $(elementClick).offset().top - 60;
  5. jQuery("html:not(:animated), body:not(:animated)").animate({scrollTop: destination}, 800);
  6. return false;
  7. });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement