forked from craftzdog/link-in-bio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.13 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Takuya Matsuyama - Links</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./index.css" />
<link rel="preload" href="./images/bg01.jpg" as="image" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.birds.min.js"></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
VANTA.BIRDS({
el: "#vanta",
mouseControls: true,
touchControls: true,
gyroControls: true,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
backgroundAlpha: 0.0,
color2: 0xff00f0,
wingSpan: 40.00,
separation: 100.00,
alignment: 77.00,
cohesion: 5.00,
quantity: 1.00
})
setTimeout(() => {
const main = document.querySelector('main')
main.style.opacity = 1
main.style.filter = 'blur(0px)'
}, 1000)
})
</script>
</head>
<body>
<div id="vanta"></div>
<main class="animated">
<header>
<img src="./images/takuya.jpg" />
<h1>@craftzdog</h1>
</header>
<ul>
<li>
<a href="https://www.craftz.dog/">
<img src="./images/homepage.svg" alt="Homepage" width="20" />
Official Website
</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=UU7yZ6keOGsvERMp2HaEbbXQ&index=1&playnext=1">
<img src="./images/youtube.svg" alt="YouTube" width="20" />
YouTube
</a>
</li>
<li>
<a href="https://twitter.com/inkdrop_app">
<img src="./images/twitter.svg" alt="Twitter" width="20" />
Twitter
</a>
</li>
<li>
<a href="https://github.com/craftzdog">
<img src="./images/github.svg" alt="GitHub" width="20" />
GitHub
</a>
</li>
</ul>
</main>
</body>
</html>