CSS

修改频率 | @media.update-frequency

update CSS @media媒体功能可基于输出设备是如何频繁地(如果有的话)能够修改内容的外观样式,来调整样式。

语法

update功能被指定为从下面的列表中选择的单个关键字值。

none一旦它被渲染,布局不能再被更新。例如:打印在纸上的文件。

例子

HTML

<p>If this text animates for you, you are using a fast-updating device.</p>

CSS

@keyframes jiggle {   from {   transform: translateY(0 }   to {   transform: translateY(25px } } @media (update: fast) {   p {   animation: 1s jiggle linear alternate infinite;   } }

结果

规格

SpecificationStatusComment
Media Queries Level 4The definition of 'update' in that specification.Working DraftInitial definition.

浏览器兼容性

FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support?????

FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support?????