forked from KinhThuong/biolink2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 3.32 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Brian - Links</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./index.css">
<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 src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="./check.js"></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
VANTA.BIRDS({
el: "#vanta",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
backgroundAlpha: 0.0,
scaleMobile: 1.00,
color2: 0xff00f0,
wingSpan: 40.00,
separation: 100.00,
alignments: 77.0,
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 class="text" position="absolute">
<h1><span class="auto-type"></span></h1>
</div>
<script src="./typed.js"></script>
<div id="vanta"></div>
<main>
<header>
<img src="./images/brian.jpg" />
<h1>@KinhThuong</h1>
</header>
<div class="floating">
<ul>
<li>
<a href="https://portfolio-ashy-eight-13.vercel.app/">
<img src="./images/homepage.svg" alt="Homepage" width="20" />
Ofiicial Website
</a>
</li>
<li>
<a href="https://www.facebook.com/thuong.kinh.37051">
<img src="./images/facebook.svg" alt="Facebook" width="20" />
Facebook
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCHsR0ufBHF03UayqmcJ0HCQ">
<img src="./images/youtube.svg" alt="Youtube" width="20" />
Youtube
</a>
</li>
<li>
<a href="https://www.instagram.com/thuong.kinh.37051/">
<img src="./images/instagram.svg" alt="Instagram" width="20" />
Instagram
</a>
</li>
<li>
<a href="https://github.com/KinhThuong">
<img src="./images/github.svg" alt="Github" width="20" />
Github
</a>
</li>
</ul>
</div>
</main>
</body>
</html>