blob: 2b1ed19eb6d9ba17b928b43a5aaf337c61f081a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE HTML>
<html>
<link rel="help" href="https://drafts.csswg.org/web-animations/">
<link rel="match" href="web-animations-print-ref.html">
<title>Web animation</title>
<p id="anim" style="color: olive">blue with animation support; olive without</p>
<script>
const animationData = [
{"color":"#0000FF"},
{"color":"#0000FF"}
];
const animationTiming = {
"duration":1,
"iterations":Infinity
};
let element = document.getElementById("anim");
element.animate(animationData, animationTiming);
</script>
|