-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0, target-densitydpi=device-dpi">
<meta name="keywords" content="creative coding, algorithmic art, p5js, p5, processing">
<title>codevember 06 | Web</title>
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<style>
html, body { margin: 0; padding: 0; overflow: hidden; }
#title {
position: absolute;
top: 10px;
left: 0;
right: 0;
text-align: center;
color: black;
font-family: monospace;
opacity: 0;
transition: 1s opacity;
animation-name: fade-out;
animation-duration: 3s;
}
#title:hover {
opacity: 1;
}
@keyframes fade-out {
0%,67% { opacity: 1; }
100% { opacity: 0; }
}
</style>
</head>
<body>
<div id="title">codevember 07 | Sea</div>
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/index.js"></script>
</body>
</html>