aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/summit-two.html
blob: 7a62296b1304ae7130442b381a6aae813bcac62c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
  <head>
    <style>
      body {
        margin: 0;
        padding: 30px 47px;
      }
      img {
        width: 206px;
        height: 206px;
      }
    </style>
  </head>
  <body>
    <p><img></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>