Default compositing New shapes are drawn over Existing shapes

suggest change
context.globalCompositeOperation = "source-over";

“source-over” compositing [default], places all new drawings over any existing drawings.

context.globalCompositeOperation='source-over';  // the default
context.drawImage(background,0,0);
context.drawImage(parachuter,0,0);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents