回顶

$(function(){
  $("#totop").hide();

  $(window).scroll(function(){

    if ($(window).scrollTop()>1200){
      $("#totop").fadeIn();
    }else{
      $("#totop").fadeOut();
    }
  });
  $("#totop").click(function(){
    $('body,html').animate({scrollTop:0},1200);
    return false;
  });
});

 

posted @ 2018-07-27 18:10  凌珊  阅读(131)  评论(0编辑  收藏  举报