首页 > 代码库 > scroll的应用

scroll的应用

jQuery(document).ready(function($){
 $(‘#shang‘).click(function(){
  $(‘html,body‘).animate({scrollTop: ‘0px‘}, 800);
 });
 $(‘#comt‘).click(function(){
  $(‘html,body‘).animate({scrollTop:$(‘#comments‘).offset().top}, 800);
 });
 $(‘#xia‘).click(function(){
  $(‘html,body‘).animate({scrollTop:$(‘#footer‘).offset().top}, 800);
 });
});

  

 

表示点击相关ID移动到指定位置:
点击ID为shang的元素,回到顶部;
点击ID为comt的元素,回到ID为comments的位置;
点击ID为xia的元素,回到底部;

scroll的应用