summaryrefslogtreecommitdiff
path: root/dvd-logo/index.html
blob: d10f527eb93a43e667dfcebee222c12809f835e6 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>

<html>
  <head>
    <title>DVD MADNESS</title>
    <style>
      body {
        margin: 0;
        background-color: black;
      }
      #container {
        margin: 0;
        width: 100vw;
        height: 100vh;
      }
      #dvd-logo {
        width: 200px;
        position: absolute;
        left: -200px;
        top: -200px;
      }
      .controls {
        padding: 12px;
        position: fixed;
        bottom: 0;
        right: 0;
        background-color: rgba(255,255,255,0.5);
        border: 1px solid white;
        border-radius: 8px;
        margin-right: 6px;
        margin-bottom: 6px;
      }
    </style>
  </head>
  <body>
    <div id="container">
      <img id="dvd-logo" src="images/dvd-logo.png">

      <div class="controls">
        <span id="iteration-count"></span>
        <br>
        <input type="range" min="0" max="500" id="iteration-slider">
      </div>
    </div>
    <script src="js/script.js"></script>
  </body>
</html>