HTMLSourceElement: height 属性
height
属性是 HTMLSourceElement
接口的一个非负数,表示图像资源的高度,单位为 CSS 像素。
此属性仅在当前 <source>
元素的父元素为 <picture>
元素时有效。
它反映了 <source>
元素的 height
属性。
值
表示图像资源高度的非负数,单位为 CSS 像素。
示例
html
<picture id="img">
<source
srcset="landscape.png"
media="(min-width: 1000px)"
width="1000"
height="400" />
<source
srcset="square.png"
media="(min-width: 800px)"
width="800"
height="800" />
<source
srcset="portrait.png"
media="(min-width: 600px)"
width="600"
height="800" />
<img
src="fallback.png"
alt="Image used when the browser does not support the sources"
width="500"
height="400" />
</picture>
js
const img = document.getElementById("img");
const sources = img.querySelectorAll("source");
console.log(Array.from(sources).map((el) => el.height)); // Output: [400, 800, 800]
规范
规范 |
---|
HTML 标准 # dom-dim-height |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。