1234567id="box"id="content"Lorem ipsum dolor, sit amet consectetur adipisicing elit. Rem quo sit, ipsa aspernatur cum nam minima nobis porro consectetur, repellat molestias amet ipsum tempore qui fuga. Ullam iusto fugit voluptate.id="back"返回顶部
12345678910111213141516171819202122232425262728293031323334353637383940* {padding:0;margin:0;}body,html {margin:0;padding:0;font-family:sans-serif;}#box {position:relative;width:200px;height:200px;background:lightskyblue;border:10px solid lightpink;margin:auto;overflow:auto;}#content {letter-spacing:1px;font-weight:700;line-height:50px;text-transform:uppercase;background-image:-webkit-linear-gradient(top left,lightpink,lightblue);}#back {position:fixed;top:100px;margin-left:162px;width:20px;height:50px;background:rgb(94,206,243);font-size:12px;line-height:12px;text-align:center;opacity:.8;cursor:pointer;display:none;}
123456789101112131415161718192021222324252627var back = document.getElementById('back');var box = document.getElementById('box');var HTML = document.documentElement;function check() {var scrT = box.scrollTop,boxH = box.clientHeight;back.style.display = scrT >= boxH ? 'block' : 'none';}back.addEventListener('click', function() {back.style.display = 'none';box.onscroll = null;timer = setInterval(function() {var speed = 20;var scrT = box.scrollTop;if (scrT === 0) {clearInterval(timer);box.onscroll = check;}scrT = scrT - speed;box.scrollTop = scrT;}, 17)})box.onscroll = check;
更新时间:2020-03-09 12:10:22