JavaScript 中的鼠标事件?
我该如何使用 JavaScript 使图像跟随鼠标移动?我目前正在使用新的 HTML5 canvas 元素。 (我希望鼠标跟随的图像在画布上,我只想让它跟随鼠标的位置。)
How would I go about making an image follow the mouse using JavaScript? I'm currently working with the new HTML5 canvas element. (The image I want the mouse to follow is on the canvas, I just want it to follow the mouse's position.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将图像的位置与
onmousemove
事件联系起来,您可以在此处查看我的演示,了解如何使用常规 JavaScript 执行此操作:http://jsbin.com/ogabi3/2类似 jQuery UI 的 位置 a> 实用程序将帮助提供与浏览器的冲突检测
You can tie the image's position to the
onmousemove
event, you can see my demo here for doing that with regular JavaScript: http://jsbin.com/ogabi3/2Things like jQuery UI's position utility will help provide collision detection with the browser