【发布时间】:2021-07-10 14:21:42
【问题描述】:
在 sencha Extjs 6.0.2 Modern 中,不会在 Chrome 90 的 Ext.dataview.List 组件上触发绘制事件。 在桌面上测试。
【问题讨论】:
标签: google-chrome extjs extjs6-modern
在 sencha Extjs 6.0.2 Modern 中,不会在 Chrome 90 的 Ext.dataview.List 组件上触发绘制事件。 在桌面上测试。
【问题讨论】:
标签: google-chrome extjs extjs6-modern
将此添加到我的 app.scss 解决了我的问题
.x-paint-monitor.cssanimation {
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-duration: 0.0010ms;
animation-duration: 0.0010ms;
}
0.0010ms 的持续时间是运行良好的最短时间。
【讨论】: