-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<div class="actor"></div>
<div class="info">
<ol>
<li>Mova o <strong>círculo azul</strong></li>
<li>
Mova o pino da <strong>linha do tempo</strong> para uma nova posição
</li>
<li>Clique no botão <strong>gravar um quadro</strong></li>
<li>Repita os passos 1...3</li>
<li>Clique no botão <strong>Reporuduzir</strong></li>
</ol>
</div>
<div class="ui">
<h2>Linha do tempo</h2>
<input type="range" min="0" max="100" value="0" class="timeline" />
<button id="record" title="Tecla G">Gravar um quadro</button>
<button id="play" title="Tecla R">Repoduzir</button>
<button id="stop" title="Tecla P">Parar</button>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>