-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (57 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
padding:0;
margin:0;
}
#parnetDiv {width:100%;padding :15px;background-color:aqua;}
#counterDiv{
background-color: rgb(4, 3, 50);
color:yellow;
padding:1px;
}
#canvasContainer {
text-align: center;
overflow: visible;
width: 100%;
height: 100%;
margin-top:5px;
background-color: rgb(1, 1, 45);
}
</style>
<!-- <script src="./00misc/custom.css"></script> -->
<!-- <script src="./00misc/prism.js"></script>
<link rel="stylesheet" href="./00misc/prism.css"> -->
<title>Test Html > Typescript</title>
</head>
<body>
<div id="canvasContainer">
<canvas id="bilza"></canvas>
<!--controls table-->
<table id="controls" style="width:100%">
<tr>
<td style="width:10%"><button style="width:100%" id="start">Play</button></td>
<td style="width:10%"><button style="width:100%" id="stop">Stop</button></td>
<td style="width:70%">
<input type="range" id="slider" style="width:100%" value="0" max="20">
</td>
<td style="width:10%"><div id="counterDiv">00</div></td>
</tr>
</table>
</div>
<hr/>
<audio id="soundTrackElement">
<source src="../sounds/ding.mp3" type="audio/mpeg">
</audio>
<script type="module" src="../src/try.js" ></script>
<pre class="language-javascript">
<code>
</code>
</pre>
</body>
</html>