Guest User

Untitled

a guest
Aug 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Smooth Scrolling
  2. $('.class a').on('click', function(event) {
  3. if (this.hash !== '') {
  4. event.preventDefault();
  5.  
  6. const hash = this.hash;
  7.  
  8. $('html, body').animate(
  9. {
  10. scrollTop: $(hash).offset().top
  11. },
  12. 800,
  13. function() {
  14. window.location.hash = hash;
  15. }
  16. );
  17. }
  18. });
Add Comment
Please, Sign In to add comment