💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### 1.距离窗口的距离大于0,让元素显示 #### 2.点击元素,缓慢的滚动到顶部 ~~~ //css div.one{ height:1200px; background:red; } div.two{ width:40px; height:70px; background:green; position:fixed; z-index: 100; bottom: 20px; right:20px; display:none; } ~~~ ~~~ //html <div class="one"> </div> <div class="two"> </div> ~~~ ~~~ //js $(function(){ window.onscroll = function(){ var scrollTop = $(window).scrollTop() console.log(scrollTop) if(scrollTop == 0){ $(".two").hide(200); }else{ $(".two").show(200) } } $(".two").click(function(){ $("body,html").animate({scrollTop:0},500) }) }) ~~~