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 March 2023.
Thuộc tính height của giao diện OffscreenCanvas trả về và đặt chiều cao của canvas ngoài màn hình.
Giá trị
Một số nguyên không âm biểu thị chiều cao tính bằng đơn vị CSS pixel.
Ví dụ
js
const offscreen = new OffscreenCanvas(256, 256);
console.log(offscreen.height); // 256
offscreen.height = 128;
Thông số kỹ thuật
| Thông số kỹ thuật |
|---|
| HTML> # dom-offscreencanvas-height-dev> |