Syntax error Mouse event not being triggered on HTML5 canvas? How to solve it?

Mouse event not being triggered on HTML5 canvas? How to solve it?



To trigger mouse event we can add −

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

In addition to this canvas can also be styled.

Another way is to add a listener in the event mousemove,

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

By adding this listener, we can easily trigger a mouse move event in HTML5.

Updated on: 2020-06-24T14:09:51+05:30

510 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements