web api instance property
HTMLCanvasElement: mozOpaque property
The non-standard HTMLCanvasElement.mozOpaque property is
a boolean value reflecting the moz-opaque HTML
attribute of the <canvas> element. It lets the canvas know whether or
not translucency will be a factor. If the canvas knows there’s no translucency, painting
performance can be optimized.
[!NOTE] This has been standardized as setting the
alphaoption tofalsewhen creating a drawing context withgetContext(). Use ofmozOpaqueshould be avoided. Firefox will stop supporting it in the future.
Value
A boolean value.
Examples
Given this <canvas> element:
<canvas id="canvas" width="300" height="300" moz-opaque></canvas>
You can get or set the mozOpaque property. For example, you could
conditionally set it to true if mimeType === 'image/jpeg', or
similar, to gain performance in your application when translucency is not needed.
const canvas = document.getElementById("canvas");
console.log(canvas.mozOpaque); // true
// deactivate it
canvas.mozOpaque = false;
Specifications
Not part of any standard.
Browser compatibility
See also
HTMLCanvasElement: Interface used to define theHTMLCanvasElement.mozOpaquepropertymoz-opaque: HTML attribute of the<canvas>element- Optimizing your JavaScript game for Firefox OS