-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiment.html
40 lines (33 loc) · 1.27 KB
/
experiment.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>No Lab Physics</title>
<script>
window.location.href = window.location.href.replace('experiment', 'experiment-create')
</script>
</head>
<body>Redirecting...</body>
<!-- <script type="module" src="./navbar.js"></script>
<script defer src="./experiment-src/index.js" type="module"></script>
<link rel="stylesheet" href="./style.css">
<physics-navbar></physics-navbar>
<main>
<div style="display: flex">
<button id="pause" onclick="pause()">Pause/Play</button>
<button id="restart" onclick="restart()">Restart</button>
<button id="ruler" onclick="toggleRuler()">Ruler</button>
<button id="copy-link">Copy link</button>
<span id="loading-experiment" style="margin-right: 1em">Loading experiment...</span>
<pre id="time"></pre>
<input id="time-slider" type="range" min="0" max="1" step="any" style="width: 100%" value="0" />
</div>
<div> <span id="copy-link-tooltip"></span></div>
<div id="canvas-container-container">
<div id="put-canvas-here">
<canvas></canvas>
</div>
</div>
</main> -->
</html>