为光标指定移动速度
我想知道,是否可以使用 jquery 给光标指定一个速度,以便在用户不使用鼠标时光标朝一个方向移动?
i was wondering, if it is possible, with jquery, to give the cursor a speed so that it moves in one direction if the user isn't using the mouse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法通过 Javascript 控制鼠标光标的位置。
You can't control the mouse cursor's position from Javascript.
虽然你无法移动鼠标光标,但你可以移动页面上的元素,所以看起来鼠标光标在移动......只是一个技巧:)
我从这个问题中学到了 Web 浏览器:隐藏鼠标光标 您可以隐藏鼠标光标,所以我想知道也许您可以隐藏它,然后模拟鼠标光标自我...虽然这一定是一个巨大的项目..
Though you can't move the mouse cursor, you can move the elements on your page, so it looks like the mouse cursor is moving...just a trick :)
I learned from this question Web browser: Hide mouse cursor that you can hide the mouse cursor, so I'm wondering that maybe you can hide it, then emulate a mouse cursor by your self...though it must be a huge project..