update
语法
示例
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 级 # update |
浏览器兼容性
加载中…