-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (73 loc) · 2.53 KB
/
index.html
File metadata and controls
74 lines (73 loc) · 2.53 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
<html lang="es">
<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="./styles/pagelink.css" />
<link rel="preload" href="./img/bg02.jpg" as="image" />
<title>Openbox Restaurant - Links</title>
<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: 100.00,
minWidth: 100.00,
scale: 1.00,
scaleMobile: 1.00,
backgroundAlpha: 0.0,
color2: 0xffee00,
wingSpan: 10.00,
speedLimit: 2.00,
separation: 50.00,
alignment: 35.00,
cohesion: 5.00,
quantity: 3.00
})
setTimeout(() => {
const main = document.querySelector('main')
main.style.opacity = 1
main.style.filter = 'blur(0px)'
}, 1000)
})
</script>
</head>
<body>
<div id="vanta">
<main>
<header >
<a href="https://www.instagram.com/openbox_cl/">
<img src="./img/logo.png" alt="Openbox Logo"/>
<h1>
@Openbox_cl
</h1>
</a>
</header>
<ul>
<li>
<a href="https://openboxchile.cl">
<img src="./img/homepage.svg" alt="Homepage" width="20" />
Página Oficial
</a>
</li>
<li>
<a href="https://queresto.com/openbox">
<img src="./img/menu-icon.svg" alt="Cartaonline" width="20" />
Nuestro Menú
</a>
</li>
<li>
<a href="https://www.instagram.com/openbox_cl/">
<img src="./img/reservar2.png" alt="Instagram" width="22" />
Reservaciones
</a>
</li>
</ul>
</main>
</div>
</body>
</html>