Advertisement
afsarwebdev

Anchor smooth scroll

Aug 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Anchor scroll down https://css-tricks.com/snippets/jquery/smooth-scrolling/
  2.  
  3.  
  4. $(document).ready(function(){
  5. $('a[href^="#"].class_name').on('click',function (e) {
  6. e.preventDefault();
  7.  
  8. var target = this.hash;
  9. var $target = $(target);
  10.  
  11. $('html, body').stop().animate({
  12. 'scrollTop': $target.offset().top
  13. }, 900, 'swing', function () {
  14. window.location.hash = target;
  15. });
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement