如何在鼠标悬停时调整画布元素的大小
我想在鼠标悬停事件上调整画布元素的大小并缓慢增大其大小(如弧线)。我该怎么做?
I want to resize and slowly growing size canvas element (like a arc) on the mouseover event. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鼠标悬停在画布本身上?只需添加一个事件侦听器并按照您想要的方式重绘场景:
http://jsfiddle.net/dAQdL/
将鼠标悬停在画布上绘制的“对象”上?您必须向画布添加对象持久性和检测。
mouseover on the canvas itself? Just add an event listener and redraw the scene the way you want:
http://jsfiddle.net/dAQdL/
mouseover an "object" drawn on the canvas? You're gonna have to add object persistence and detection to the canvas.