简体   繁体   中英

Scrollbar and Smooth Scrolling Code

Please check this page (for an example)

http://www.christinamichael.in/create-a-powerful-human-disintegration-effect-in-photoshop

I want to know how can i have such this ?

I want something to be supported in firefox and chrome .

You can do the smooth scrolling with use of ANCHOR tag. Below results.

$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
  var target = $(this.hash);
  target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
  if (target.length) {
    $('html,body').animate({
      scrollTop: target.offset().top
    }, 1000);
    return false;
  }
}
  });
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM