没有在HTML5画布上触发鼠标事件?怎么解决呢?

要触发鼠标事件,我们可以添加-

-webkit-transform: translate3d(0, 0, 0)

除了这个画布也可以被样式化。

另一种方法是在mousemove事件中添加侦听器,

canvas.addEventListener("mousemove", this.checkMouseLocation.bind(this, this.inputs), false);

通过添加此侦听器,我们可以轻松触发HTML5中的鼠标移动事件。

猜你喜欢