Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // scroll к якорю
  2. $(function(){
  3.  
  4. $(".класс_ссылки_для_скрола").click(function(){
  5.  
  6. var _href = $(this).attr("href");
  7.  
  8. $("html, body").animate({scrollTop: $(_href).offset().top - 80 +"px"});
  9.  
  10. return false;
  11. });
  12. });
  13.  
  14. // scroll после перезагрузки страницы
  15. (function(){
  16. var hash = document.location.hash;
  17. if( hash != '' && jQuery( hash ) != 'undefined') {
  18. jQuery('html, body').animate({
  19. scrollTop: jQuery(hash).offset().top },
  20. 1000
  21. );
  22. }
  23. })(window.jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement