The height
property returns and sets the height of an OffscreenCanvas
object.
The height
property returns and sets the height of an OffscreenCanvas
object.
Creating a new offscreen canvas and returning or setting the height of the offscreen canvas:
js
const offscreen = new OffscreenCanvas(256, 256); offscreen.height; // 256 offscreen.height = 512;
Specification |
---|
HTML Standard # dom-offscreencanvas-height-dev |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
height |
69 | 79 | 105 | No | 56 | 16.4 | 69 | 69 | 105 | 48 | 16.4 | 10.0 |
OffscreenCanvas
, the interface this property belongs to.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/height