更新
**update
** CSS 媒体特性 可用于测试输出设备在渲染后修改内容外观的频率(如果有的话)。
css
@media (update: < none | slow | fast >) {
/* styles to apply if the update frequency of the output device is a match */
}
语法
示例
HTML
html
<p>
If this text animates for you, your browser supports `update` and you are
using a fast-updating device.
</p>
CSS
css
@keyframes jiggle {
from {
transform: translateY(0);
}
to {
transform: translateY(25px);
}
}
@media (update: fast) {
p {
animation: 1s jiggle linear alternate infinite;
}
}
结果
规范
规范 |
---|
媒体查询级别 4 # 更新 |
浏览器兼容性
BCD 表格仅在浏览器中加载