LayoutShiftAttribution: node-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig, bevor Sie diese produktiv verwenden.
Die schreibgeschützte node
-Eigenschaft des LayoutShiftAttribution
-Interfaces gibt ein Node
-Objekt zurück, das das verschobene Objekt darstellt.
Wert
Ein Node
.
Beispiele
Im folgenden Beispiel wird das node
des ersten Elements in LayoutShift.sources
in die Konsole ausgegeben.
js
new PerformanceObserver((list) => {
for (const { sources } of list.getEntries()) {
if (sources) {
console.log(sources[0].node);
}
}
}).observe({ type: "layout-shift", buffered: true });
Spezifikationen
Specification |
---|
Layout Instability # dom-layoutshiftattribution-node |
Browser-Kompatibilität
BCD tables only load in the browser