-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.29 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="./index.css">
<link rel="shortcut icon" href="./icons8-audio-wave2-48.png">
</head>
<body>
<div>
<h1>This is audioVisualizer</h1>
<audio id="audio1" controls>this is audio</audio>
<input type='file' id ='fileupload' accept='audio/*'/>
<!-- <button id="playbutton" data-playing="false" role="switch" aria-checked="false" onclick="Start()" >
<span>start Audio player</span> -->
</button>
<input type="range" id="volume" min="0" max="2" value="1" step="0.01"/>
</div>
<div id="canvas">
<canvas id="Visualizer" width="800" height="500"></canvas>
</div>
<div>
<button id="testeri" onclick="clicker()">testeri</button>
<ul>
<li id="teksti1">lorem ipsum</li>
<li id="teksti2">dolor est</li>
<li id="teksti3">lorem ipsum</li>
<li id="teksti4">dolor est</li>
<li id="teksti5">lorem ipsum</li>
<li id="teksti6">dolor est</li>
</div>
<script src="./script.js"></script>
</body>
</html>