-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 2.75 KB
/
Copy pathindex.html
File metadata and controls
99 lines (96 loc) · 2.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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" />
<title>Marvin Zuniga - Links</title>
<link rel="stylesheet" href="/styles/index.css">
<link rel="shortcut icon" href="./images/bx-football.svg" type="image/x-icon">
</style>
<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,
wingSpan: 33.00,
separation: 41.00,
alignment: 42.00,
cohesion: 49.00,
quantity: 3.00,
backgroundAlpha: 0.0
})
setTimeout (() => {
const main = document.querySelector('main')
main.style.opacity = 1
main.style.filter = 'blur(0px)'
}, 1000)
})
</script>
</head>
<body>
<!--
<video autoplay muted loop playsinline>
<source src="./images/space.m4v" type="video/mp4; codecs=hvc1">
<source src="./images/space.webm" type="video/webm; codecs=vp9">
</video>
-->
<div id="vanta"></div>
<main>
<header>
<img src="./images/marvin.png" alt="marvin" width="225px" />
<h1>@helloworld_mz</h1>
</header>
<ul>
<li>
<a
href="https://mywebwithvite.vercel.app/"
target="_blank"
rel="noopener noreferrer"
>
<img src="/images/homeicon.svg" alt="home" width="20">
Oficial Website
</a>
</li>
<li>
<a
href="https://twitter.com/helloworld_mz"
target="_blank"
rel="noopener noreferrer"
>
<img src="/images/twitter.svg" alt="twitter" width="20">
Twitter
</a>
</li>
<li>
<a
href="https://github.com/MarvinZun19"
target="_blank"
rel="noopener noreferrer"
>
<img src="/images/github.svg" alt="github" width="20">
GitHub
</a>
</li>
<li>
<a
href="https://www.instagram.com/marvinzun19/"
target="_blank"
rel="noopener noreferrer"
>
<img src="/images/instagram.svg" alt="instagram" width="20">
instagram
</a>
</li>
</ul>
</main>
</body>
</html>