OffscreenCanvas: width プロパティ
Baseline 2023Newly available
Since March 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
メモ: この機能はウェブワーカー内で利用可能です。
width
プロパティは、 OffscreenCanvas
オブジェクトの幅を返したり設定したりします。
値
このオフスクリーンキャンバスの幅を CSS ピクセル数で表す正の整数です。
例
新しいオフスクリーンキャンバスを作成し、オフスクリーンキャンバスの幅を返し、または設定します。
js
const offscreen = new OffscreenCanvas(256, 256);
offscreen.width; // 256
offscreen.width = 512;
仕様書
Specification |
---|
HTML # dom-offscreencanvas-width-dev |
ブラウザーの互換性
関連情報
OffscreenCanvas
: このプロパティの所属先のインターフェイス