blob: 03ef1bab3c3430891ed9f37ca913c1339d36e682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE HTML>
<html>
<link rel="help" href="https://drafts.csswg.org/css-animations/">
<link rel="match" href="paused-animations-print-ref.html">
<title>Paused CSS animation</title>
<style>
@keyframes a {
from, to { color: blue; }
}
p {
color: olive;
animation: a 1s infinite;
}
</style>
<p id="anim">blue with animation support; olive without</p>
<script>
let element = document.getElementById("anim");
element.style.animationPlayState = "paused";
</script>
|