Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- JQuery Interal Link Animation Scrolling
- // JQuery Interal Link Animation Scrolling
- $(document).ready(function(){
- $('a[href^="#"]').on('click',function (e) {
- e.preventDefault();
- var target = this.hash;
- var $target = $(target);
- $('html, body').stop().animate({
- 'scrollTop': $target.offset().top
- }, 900, 'swing');
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement