aboutsummaryrefslogtreecommitdiff
path: root/web/pw-visualizer/src/index.html
blob: c2b2c33fc9e8c19a2e8325bea03f4a169877e993 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Hello wasm-pack!</title>
    <link rel="stylesheet" type="text/css" href="static/res/style.css">
  </head>
  <body>
    <input type="file" id="fileselect" style="display: none">
    <div id=wrapper>

      <div id="main" class="loading">
        <canvas id="c"></canvas>
        <div id="name"></div>
        <div id="addbutton" class="button"></div>

        <div id="meta">
          <div id="turnCounter">
            0 / 0
          </div>
          <div>
            <span>Ms per frame:&nbsp;</span>
            <input type="number" id="speed" value="100">
          </div>
          <div class="slidecontainer">
            <input type="range" min="0" max="1" value="1" class="slider" id="turnSlider">
          </div>
        </div>
      </div>

      <div class=".options" id=options>
        <div class="option">
          Option one
        </div>
        <div class="option">
            Option two
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div><div class="option">
          Option three
        </div>
        <div class="option">
          Option three
        </div>
        <div class="option">
            Option three
          </div>
          <div class="option">
            Option three
          </div>
          <div class="option">
            Option three
          </div>
          <div class="option">
            Option three
          </div><div class="option">
            Option three
          </div>
          <div class="option">
            Option three
          </div>
      </div>

    </div>


    <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
    <script src="bootstrap.js"></script>
    <script>
      const URL = window.location.origin + window.location.pathname;
      const LOCATION = URL.substring(0, URL.lastIndexOf("/") + 1);

      const game_location = LOCATION + "static/games/Chandra Garrett.json";
      const name = "Chandra Garrett";
      window.setTimeout(
          () => visualizer.handle(game_location, name), 1000
      )
    </script>
  </body>
</html>