我试图创建一个简单的网页,自动移动光标到一个随机的位置。我已经尝试过,并得到控制台显示随机数据,但我看不到光标移动。
有人能给予我一些提示让我更进一步吗?
我是否也应该考虑CSS转换?
<!DOCTYPE html>
<html>
<head>
<title>Auto Mouse Mover</title>
</head>
<body>
<h1>Auto Mouse Mover</h1>
<p>This page automatically moves the mouse to a random location every 5 seconds.</p>
<script>
// Move the mouse to a random location
function moveMouse() {
var x = Math.floor(Math.random() * window.innerWidth);
var y = Math.floor(Math.random() * window.innerHeight);
window.moveTo(x, y);
console.log(x, y);
}
// Move the mouse every 5 seconds
setInterval(moveMouse, 1000);
</script>
</body>
</html>
1条答案
按热度按时间fdbelqdn1#
你不能用JS或任何网络编程语言移动光标,想象一下它会有什么安全问题。