forked from diffusionstudio/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.09 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
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DS Playground</title>
<link rel="stylesheet" href="/playground/index.css">
</head>
<body>
<div id="app">
<div id="player-container">
<div id="player"></div>
<div id="progress" style="display: none;">
<h1>80%</h1>
</div>
</div>
<div id="timeline">
<div></div>
</div>
<div id="controls">
<div id="playback">
<i data-lucide="skip-back"></i>
<i data-lucide="play"></i>
<i data-lucide="pause" style="display: none;"></i>
<i data-lucide="skip-forward"></i>
</div>
<span id="time">00:00 / 00:00</span>
<i data-lucide="gauge"></i>
<button id="export" type="button">
<div class="loader" style="display: none;"></div>
Export
</button>
</div>
</div>
<script type="module" src="playground/main.ts"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<script>
lucide.createIcons();
</script>
</body>
</html>