-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 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
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"/>
<style type="text/css" media="screen">
body{width: 100%; height: 100%; overflow: hidden;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAALElEQVQoU2M8c+bMfwYcwNjYGJcUA+OoRloEzn8gwBXmZ8+exR0doxppEDgASDBIqGYBoxkAAAAASUVORK5CYII=);
cursor: url('./korn.png') 2 4;}
.input {
position: absolute;
top: 25%;
left: 30%;
z-index: 2;
display: none;
}
.input:after {
content: '.png';
font-size: 60px;
left: 584px;
position: absolute;
top: 27px;
color: #F08080;
}
.input .filename {
font-size: 66px;
text-align: center;
padding: 10px;
width: 675px;
}
</style>
</head>
<body>
<div class="input">
<a class="close" href="javascript:void(0);">X</a>
<input type="text" class="filename" name="" value="myimage" />
</div>
<canvas width="1600" height="900"></canvas>
<audio autoplay src="trap.mp3"></audio>
<script type="text/javascript" src="glitch-canvas.min.js"></script>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>