files/en-us/web/css/reference/at-rules/@media/update/index.md
The update CSS media feature can be used to test how frequently (if at all) the output device is able to modify the appearance of content once rendered.
none
slow
fast
<p>
If this text animates for you, your browser supports `update` and you are
using a fast-updating device.
</p>
@keyframes jiggle {
from {
transform: translateY(0);
}
to {
transform: translateY(25px);
}
}
@media (update: fast) {
p {
animation: 1s jiggle linear alternate infinite;
}
}
{{EmbedLiveSample("Examples")}}
{{Specifications}}
{{Compat}}