-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
86 lines (86 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/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: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
backgroundAlpha: 0.0,
color2: 0xff00f0,
wingSpan: 40.0,
separation: 100.0,
alignment: 77.0,
cohesion: 5.0,
quantity: 2.0,
});
setTimeout(() => {
const main = document.querySelector("main");
main.style.opacity = 1;
main.style.filter = "blur(0px)";
}, 1000);
});
</script>
<title>Anurag Pramanik - Links</title>
</head>
<body>
<div id="vanta"></div>
<main>
<header>
<img
src="https://avatars.githubusercontent.com/u/78271602?v=4"
alt="Anurag's GitHub avatar"
/>
<h1>@apicgg</h1>
</header>
<ul>
<li>
<a
href="https://anuragp.dev/"
target="_blank"
rel="noreferrer noopener"
>
<img
src="assets/images/homepage.svg"
alt="home button"
width="20"
/>
Website
</a>
</li>
<li>
<a
href="https://github.com/apicgg/"
target="_blank"
rel="noreferrer noopener"
>
<img src="assets/images/github.svg" alt="home button" width="20" />
GitHub</a
>
</li>
<li>
<a
href="https://twitter.com/titas_p/"
target="_blank"
rel="noreferrer noopener"
>
<img src="assets/images/twitter.svg" alt="home button" width="20" />
Twitter</a
>
</li>
</ul>
</main>
</body>
</html>