扫码关注官方订阅号
Q.想利用JS中的move函数实现小图的斜线下移,但是明明代码几乎一样,left的移动可以实现,top却怎么也动不了
台球桌
认证0级讲师
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>top</title> </head> <body> <p style="width: 100px;height: 100px;position: absolute;top: 10px;left: 10px;background-color: #1b6d85" id="ball"></p> <script type="text/javascript"> function init(){ setInterval("move()",100); } function move(){ var ball = document.getElementById("ball"); var left = parseInt(ball.style.left); left += 1; var top = parseInt(ball.style.top); top += 1; ball.style.left = left + "px"; ball.style.top = top + "px"; } init(); </script> </body> </html>
希望您严格按照W3C标准来写JS代码。
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
希望您严格按照W3C标准来写JS代码。