This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
OffscreenCanvas()
생성자는 새롭게 초기화된 OffscreenCanvas
객체를 반환합니다.
구문
new OffscreenCanvas(width, height);
매개 변수
width
- offscreen 캔버스의 너비
height
- offscreen 캔버스의 높이
예시
이 예시는 OffscreenCanvas()
생성자를 이용해 새로운 offscreen 캔버스를 생성하고, WebGL 컨텍스트의 getContext()
메소드를 사용해 초기화합니다.
let offscreen = new OffscreenCanvas(256, 256);
let gl = offscreen.getContext('webgl');
상세
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'OffscreenCanvas()' in that specification. |
Living Standard |
브라우저 호환성
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
더 보기
OffscreenCanvas
, 생성자가 속한 인터페이스