Jquery悬浮backTop代码

 1 $(window).scroll(function () {
 2             if ($(this).scrollTop() != 0) {
 3                 $("#toTop").fadeIn();
 4             } else {
 5                 $("#toTop").fadeOut();
 6             }
 7         });
 8         $("body").append("
"); 9 $("#toTop").click(function () { 10 $("body,html").animate({ scrollTop: 0 }, 800); 11 });

html中向下滑动页面,按钮出现,可以回到顶部,回到顶部后按钮自动消失。

转载于:https://www.cnblogs.com/HuberyHu/p/5492008.html

你可能感兴趣的:(Jquery悬浮backTop代码)