ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 置顶按钮 ~~~ $(document).scroll(function () { // 获取滚动高度 let scrollH = $(document).scrollTop(); // 控制显隐性 let min = 100, max = 300; if (scrollH => min && scrollH <= max) { $('#topping').css({opacity: (scrollH - min) / max}); } }); function topping() { $('html , body').animate({scrollTop: 0}); } ~~~ # 延时执行 ~~~ let t; clearTimeout(t) t = setTimeout(function (){ console.log('执行了'); }, 1000); ~~~