OffscreenCanvas: OffscreenCanvas() Konstruktor
Baseline 2023
Newly available
Since March 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Hinweis: Dieses Feature ist verfügbar in Web Workers.
Der OffscreenCanvas()
Konstruktor gibt ein neu instanziiertes OffscreenCanvas
-Objekt zurück.
Syntax
js
new OffscreenCanvas(width, height)
Parameter
Beispiele
Dieses Beispiel erstellt ein neues Offscreen-Canvas mit dem OffscreenCanvas()
Konstruktor. Wir initialisieren dann einen WebGL-Kontext darauf mit der getContext()
-Methode.
js
const offscreen = new OffscreenCanvas(256, 256);
const gl = offscreen.getContext("webgl");
Spezifikationen
Specification |
---|
HTML Standard # dom-offscreencanvas-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
OffscreenCanvas
, die Schnittstelle, zu der dieser Konstruktor gehört