LayoutShiftAttribution: currentRect property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The currentRect read-only property of the LayoutShiftAttribution interface returns a DOMRectReadOnly object representing the position of the element after the shift.
Value
A DOMRectReadOnly object.
Examples
The following example prints the currentRect of the first item in LayoutShift.sources to the console.
js
new PerformanceObserver((list) => { for (const { sources } of list.getEntries()) { if (sources) { console.log(sources[0].currentRect); } } }).observe({ type: "layout-shift", buffered: true }); Specifications
| Specification |
|---|
| Layout Instability API> # dom-layoutshiftattribution-currentrect> |