网页常用片段-回到顶部

1、html

<div id="totop"></div>

2、css

#totop {
    width: 51px;
    height: 57px;
    cursor: pointer;
    position: fixed;
    right: 10px;
    top: 60%;
    background: #fff url(../images/totop.png) no-repeat center 50%;
    border: 1px solid #e2e2e2;
    opacity: 0.85;
    z-index: 100;
    display: none;
    mix-blend-mode: exclusion;
}
#totop:hover {
    opacity: 1;
}

3、js

$("#totop").click(function() {
  $("html,body").animate({scrollTop:0}, 300);
}); 
$(window).scroll(function () {
  if ($(window).scrollTop() > 800) {
    $("#totop").fadeIn(300);
  }
  else {
    $("#totop").fadeOut(300);
  }
});

 

posted @ 2019-09-25 16:32  夏天的鱼呀  阅读(139)  评论(0编辑  收藏  举报