Tag:Canvas event binding
-
How to implement graph / image binding event monitoring on canvas
HTML can only bind listening function for element / tag; There is only one element in canvas drawing – canvas, and each graph / image is not an element, so event binding cannot be carried out directly. Solution: “event delegation” — let canvas listen to all events and calculate whether the coordinate point of the […]