NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
~~~ <style> div.one{ height: 12000px; background: gold; } .fix{ width: 30px; height: 50px; background: red; position: fixed; z-index: 100; bottom: 100px; right: 50px; } </style> ~~~ ~~~ <div class="one"> </div> <div class="fix"> </div> <script> $(window).scroll(function(){ var scroll = $ (window).scrollTop(); console.log(scroll); if(scroll>70){ $(".fix").fadeIn(300) } else{ $(".fix").fadeOut(300) } }) $(".fix").click(function(){ $("html,body").animate({scrollTop:0},300) }) </script> ~~~