HTML 屬性:elementtiming
elementtiming 屬性用於指示元素已由使用“element”型別的 PerformanceObserver 物件標記為跟蹤。有關更多詳細資訊,請參閱 PerformanceElementTiming 介面。
此屬性可以應用於 <img>、<image>(位於 <svg> 內部)、<video> 元素的海報影像、具有 background-image 的元素以及包含文字節點的元素(例如 <p>)。
在 DOM 中,此屬性反映為 Element.elementTiming。
用法
為 elementtiming 提供的值將成為觀察到的元素的識別符號。
html
<img alt="alt" src="img.jpg" elementtiming="label for element" />
您可能希望觀察的元素的良好競爭者是
- 文章的主要圖片。
- 部落格文章標題
- 購物網站輪播中的圖片。
- 頁面上主要影片的海報影像。
示例
html
<img
alt="Alt for a main blog post image"
src="my-massive-image.jpg"
elementtiming="Main image" />
<p elementtiming="important-text">Some very important information.</p>