SVGPatternElement: preserveAspectRatio 屬性
SVGPatternElement 介面的只讀屬性 preserveAspectRatio 反映了給定元素的 preserveAspectRatio 屬性。它定義瞭如何縮放圖案內容以適應給定空間,同時保留其縱橫比。
值
示例
給定以下 SVG,我們可以使用 preserveAspectRatio 屬性來檢索圖案元素的縮放行為
html
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
<defs>
<pattern
id="pattern1"
width="10"
height="10"
preserveAspectRatio="xMidYMid meet">
<circle cx="5" cy="5" r="5" fill="blue" />
</pattern>
</defs>
<rect x="0" y="0" width="100" height="100" fill="url(#pattern1)" />
</svg>
我們可以訪問 preserveAspectRatio 屬性。
js
const pattern = document.querySelector("pattern");
console.log(pattern.preserveAspectRatio.baseVal); // output: SVGPreserveAspectRatio {align: 1, meetOrSlice: 1}
規範
| 規範 |
|---|
| Scalable Vector Graphics (SVG) 2 # __svg__SVGFitToViewBox__preserveAspectRatio |
瀏覽器相容性
載入中…