<script>(function () {var ball = document.createElement("div");ball.style.width = "100px";ball.style.height = "100px";ball.style.backgroundColor = "#ff6700";ball.style.borderRadius = "50%";ball.style.position = "absolute";ball.style.left = "100px";ball.style.top = "0";document.body.appendChild(ball);var viewHeight = document.documentElement.clientHeight;var ballHeight = ball.offsetHeight;var maxHeight = viewHeight - ballHeight-2;var top = parseInt(ball.style.top);var v = 0;const SPEED = 1.5;const LOOS_SPEED = 1;const INTERVAL = 20;var direction = true;function move() {if (direction) {v += SPEED;top += v;ball.style.top = top + "px";if (top > maxHeight) {top = maxHeight;v -= LOOS_SPEED;direction = false;}if (v <= 0) {v = 0;ball.style.top = maxHeight + "px";clearInterval(timer);}} else {v -= SPEED;top -= v;ball.style.top = top + "px";if (v <= 0) {direction = true;}}}var timer = setInterval(move, INTERVAL );})();
</script>
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!