-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1020 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (33 loc) · 1020 Bytes
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>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css" media="screen">
<script src="./index.js" charset="utf-8"></script>
<title>Notalizer</title>
</head>
<body>
<div id=notalizer>
<svg id="visualizer"
height='100%'
width='100%'
preserveAspectRatio='none'
version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<mask id="mask">
<g id="maskGroup">
</g>
</mask>
<linearGradient id="barGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" id = "first" />
<stop offset="20%" id = "second" />
<stop offset="80%" id = "third" />
<stop offset="100%" id = "fourth" />
</linearGradient>
</defs>
<rect x="0" y="0" width="100%" height="100%" fill="url(#barGradient)" mask="url(#mask)"></rect>
</svg>
<h1>Please allow the use of your microphone</h1>
</div>
</body>
</html>