-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (53 loc) · 1.87 KB
/
index.html
File metadata and controls
62 lines (53 loc) · 1.87 KB
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
<!DOCTYPE html>
<!-- Created by Danyon Edwards -->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Loading Vial Attempt</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/index.css">
<!-- The svg filter for the blur / contrast (The goo effect) -->
<svg>
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="6" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -8" result="goo" />
<feComposite in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
</head>
<body>
<!-- Original GIF -->
<div class="loading-container">
<img src="resource/loading-vial-original.gif" height="100%" width="auto"></img>
</div>
<div class="loading-container">
<div class="bottle-container">
<!-- The main part of the bottle -->
<div class="bottle-lip"></div>
<div class="bottle-neck"></div>
<div class="btop"></div>
<div class="bottle-base"></div>
<!-- Enter liquid modifications here -->
<div class="liquid-container">
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<div class="liquid">
<div class="wave wave-1"></div>
<div class="wave wave-2"></div>
</div>
</div>
</div>
<div class="text-container">
loading
</div>
</div>
</body>
</html>