OffscreenCanvas.height

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.

실험적: 이 기능은 실험적인 기능입니다.
프로덕션 환경에서 사용하기 전에 브라우저 호환성 표를 주의 깊게 확인하세요.

height 프로퍼티는 OffscreenCanvas 객체에 할당된 높이를 반환합니다.

구문

js
var pxl = offscreen.height;
offscreen.height = pxl;

예시

새로운 offscreen 캔버스를 생성하고 높이를 설정하거나 반환합니다.

js
var offscreen = new OffscreenCanvas(256, 256);
offscreen.height; // 256
offscreen.height = 512;

명세서

Specification
HTML Standard
# dom-offscreencanvas-height-dev

브라우저 호환성

BCD tables only load in the browser

더 보기