aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/filmstrip.html
blob: 1f8d57d2d3953aa2eae18bf315b2f17c4b1209a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Filmstrip</title>
</head>
<body>
<p><img src="longcattop.png"></p>
<p><img src="longcatbot.png"></p>
<script>
var index = 0;
function change() {
    document.getElementsByTagName("img")[0].src = "rust-" + (index * 45) + ".png";
    index = (index + 1) % 8;
    setTimeout(change, 100);
}
change();
</script>
</body>
</html>