LayoutShift - Web APIs 编辑
The LayoutShift
interface of the Layout Instability API provides insights into the stability of web pages based on movements of the elements on the page.
Properties
LayoutShift.value
- Returns the
impact fraction
(fraction of the viewport that was shifted) times thedistance fraction
(distance moved as a fraction of viewport). LayoutShift.hadRecentInput
- Returns
true
if there was a user input in the past 500 milliseconds. LayoutShift.lastInputTime
- Returns the time of the most recent user input.
LayoutShift.sources
- Returns an array of
LayoutShiftAttribution
objects with information on the elements that were shifted.
Methods
LayoutShift.toJSON()
- Converts the properties to JSON.
Examples
The following example shows how to capture layout shifts and log them to the console.
Note that in this example data is only sent to the server when the user leaves the tab.
// Catch errors since some browsers throw when using the new `type` option.
// https://bugs.webkit.org/show_bug.cgi?id=209216
try {
let cumulativeLayoutShiftScore = 0;
const observer = new PerformanceObserver((list) => {
for (const entry of list.getEntries()) {
// Only count layout shifts without recent user input.
if (!entry.hadRecentInput) {
cumulativeLayoutShiftScore += entry.value;
}
}
});
observer.observe({type: 'layout-shift', buffered: true});
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'hidden') {
// Force any pending records to be dispatched.
observer.takeRecords();
observer.disconnect();
console.log('CLS:', cumulativeLayoutShiftScore);
}
});
} catch (e) {
// Do nothing if the browser doesn't support this API.
}
Specifications
Specification | Status | Comment |
---|---|---|
Layout Instability API The definition of 'LayoutShift' in that specification. | Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论