Does canvas element have “change” event?

后端 未结 4 1026
南笙
南笙 2021-01-17 15:41

Is there a way to attach event handler to a change of a canvas element? I need to fire a function whenever something draws anything on it.

相关标签:
4条回答
  • 2021-01-17 16:23

    No, the canvas element does not provide any events, it's just a plain bitmap.

    If you really want to do this, hijack all the calls on a context built in your events and then call the original function (which you have copied previously).

    My advice:
    Do not do the above, it will be slow and hard to maintain. Instead change the design of your application, you could, for one, make custom drawing functions which will abstract the canvas and put in the event stuff there.

    This would also have the added benefit of less context.* calls (therefore cleaner code) when doing a lot of drawing.

    0 讨论(0)
  • 2021-01-17 16:24

    I would actually wrap the canvas iff needed to track these commands. Here's a simple example tracking only for a few methods:

    function eventOnDraw( ctx, eventName ){
      var fireEvent = function(){
        var evt = document.createEvent("Events");
        evt.initEvent(eventName, true, true);
        ctx.canvas.dispatchEvent( evt );
      }
      var stroke = ctx.stroke;
      ctx.stroke = function(){
        stroke.call(this);
        fireEvent();
      };
      var fillRect = ctx.fillRect;
      ctx.fillRect = function(x,y,w,h){
        fillRect.call(this,x,y,w,h);
        fireEvent();
      };
      var fill = ctx.fill;
      ctx.fill = function(){
        fill.call(this);
        fireEvent();
      };
    }
    
    ...
    
    var myContext = someCanvasElement.getContext('2d');
    someCanvasElement.addEventListener( 'blargle', myHandler, false );
    eventOnDraw( myContext, 'blargle' );
    
    0 讨论(0)
  • 2021-01-17 16:28

    You could use the mouseup event.

    canvasElement.addEventListener('mouseup', e => {
      // Fire function!
    });
    
    // or jQuery    
    $('canvas').on('mouseup', function() {
      // Fire function!
    });
    

    The mouseup docs above actually have a good canvas example

    0 讨论(0)
  • 2021-01-17 16:41

    For me I attached a click event on the canvas and I am able to detect if any thing is drawn on that canvas.

    Fiddle here - http://jsfiddle.net/ashwyn/egXhT/2/

    Check for text //Event if Drawn and you will understand where.

    0 讨论(0)
提交回复
热议问题