Advertisement
Neolot

Плавная прокрутка по якорям

Jun 3rd, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.40 KB | None | 0 0
  1. /* Вешаем событие прокрутки на все якоря (#) на странице */
  2. $('a[href^="#"]').bind('click.smoothscroll', function (e) {
  3.     e.preventDefault();
  4.     var target = this.hash,
  5.     $target = $(target);
  6.     $('html, body').stop().animate({
  7.         'scrollTop':$target.offset().top
  8.     }, 900, 'swing', function () {
  9.         window.location.hash = target;
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement