OffscreenCanvas.height
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2023年3月.
设置或者获取OffscreenCanvas
对象的高度。
语法
var pxl = offscreen.height; offscreen.height = pxl;
例子
创建一个新的离屏 canvas,获取或者设置离屏 canvas 的高度:
js
var offscreen = new OffscreenCanvas(256, 256);
offscreen.height; // 256
offscreen.height = 512;
规范
Specification |
---|
HTML> # dom-offscreencanvas-height-dev> |
浏览器兼容性
Loading…
另外参阅
OffscreenCanvas
, 此属性所属的接口。