HTMLAreaElement: shape プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
shape
は HTMLAreaElement
インターフェイスのプロパティで、イメージマップ領域の形状を指定します。これは、 要素の
shape
属性を反映します。
値
文字列です。 rect
、circle
、poly
のいずれかです。
例
js
const areaElement = document.getElementById("imageMapArea");
console.log(areaElement.shape);
仕様書
Specification |
---|
HTML # dom-area-shape |