AI summary
type
status
date
Jul 23, 2024 10:28 AM
slug
summary
tags
category
icon
password

待解决

  • how to display fps in <iframe>?
  • why droped frame by GPU thread will result in flicker issue

实测

  • 测试页面:xx
  • 缩放页面:150%
  • Behavior:可以看到有掉帧,前置帧绘制超过 16.7ms
  • - Normal --
notion image
  • - 20x cpu slow --
notion image
  • - no gpu accelerate --
notion image
notion image
现在回头来看有 gpu 线程的情况
notion image
光栅化线程(非主线程)会发起光栅化(Rasterize Paint),GPU 开始工作,但是如果 GPU 工作时间超过这一帧(16.7ms),就会导致奇怪的 flicker 现象,原因未知

Notes

利用 Chrome Devtools 调试 Performance

在 devtools Performance 面板,Sumary 中可以看到 Rendering 和 Painting
其中:
  • Rendering 包含 Style 计算 + Layout
  • Painting 包含 Paint + Composite
devtools里 Rendering 和 Painting 时间对应事件:

非动画优化

Animation 专题

Chrome Animation Topics

【Articles】CSS vs JS in animation

There are many pages and comments threads around the web that discuss the relative merits of CSS and JavaScript animations from a performance perspective. Here are a few points to keep in mind:
  • CSS-based animations, and Web Animations where supported natively, are typically handled on a thread known as the "compositor thread". This is different from the browser's "main thread", where styling, layout, painting, and JavaScript are executed. This means that if the browser is running some expensive tasks on the main thread, these animations can keep going without being interrupted.
  • Other changes to transforms and opacity can, in many cases, also be handled by the compositor thread.
  • If any animation triggers paint, layout, or both, the "main thread" will be required to do work. This is true for both CSS- and JavaScript-based animations, and the overhead of layout or paint will likely dwarf any work associated with CSS or JavaScript execution, rendering the question moot.
  1. CSS animation vs requestAnimationFrame()

Tracing

Reference

SVG StudyHello Copilot