-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.48 KB
/
Copy pathindex.html
File metadata and controls
77 lines (77 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>✨</text></svg>">
<meta name="viewport" content="width=device-width, height=device-height, interactive-widget=resizes-content, shrink-to-fit=0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<meta property="og:title" content="Aurelia - ThreeJS WebGPU Experiment - holtsetio.com" />
<meta property="og:image" content="https://holtsetio.com/img/lab/aurelia.jpg" />
<title>Aurelia - ThreeJS WebGPU Experiment - holtsetio.com</title>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
position: relative;
overflow: hidden;
}
#container {
width: 100%;
height: 100%;
display: block;
}
#veil {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 1;
pointer-events: none;
transition: opacity 1s ease-in-out;
}
#progress-bar {
position: absolute;
width: 200px;
height: 5px;
left: 50vw;
top: 50vh;
transition: opacity 0.2s ease;
transform: translateX(-50%) translateY(-50%);
background-color: #333;
}
#progress {
position: absolute;
width: 0px;
height: 5px;
left: 0px;
top: 0px;
transition: width 0.2s ease;
background-color: #848484;
}
#error {
position: absolute;
left: 50vw;
top: 50vh;
transform: translateX(-50%) translateY(-50%);
color: #FFFFFF;
visibility: hidden;
}
</style>
<script defer src="https://s.holtsetio.com/script.js" data-website-id="cb36fa92-2381-4031-8f81-f430a473156d"></script>
</head>
<body>
<div id="container">
<div id="veil">
<div id="progress-bar"><div id="progress"></div></div>
<div id="error"></div>
</div>
<div id="links" style="position: absolute; bottom: 20px; left: 20px; z-index: 10;">
<a href="https://sebas-dev.vercel.app/" target="_blank" style="text-decoration: underline; font-style: italic; color: #fff; margin-right: 20px;">Created by Sebastian Vasquez</a>
<a href="https://github.com/sebastianvasquezechavarria1234/jellyfish-three.js" target="_blank" style="text-decoration: underline; font-style: italic; color: #fff;">View source code</a>
</div>
<script src="./index.js" type="module"></script>
</body>
</html>