-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (66 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>zpennachi</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Doto:[email protected]&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Silkscreen:wght@400;700&family=Sometype+Mono:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Marquee -->
<div class="marquee-container">
<div class="marquee">| Building | Learning | Having Fun :) |</div>
</div>
<!-- Model Viewer (Full-screen background) -->
<model-viewer
src="https://uploads-ssl.webflow.com/64f5d91cdf7028173fc31b4f/6650d57cfebe58fb480532d2_4up.glb.txt"
id="model-viewer"
ar
poster="https://uploads-ssl.webflow.com/64f5d91cdf7028173fc31b4f/6650d6ccfdb22ece13f5d46f_Screenshot%202024-05-24%20140155%201-min.png"
ar-modes="webxr scene-viewer quick-look"
camera-controls
auto-rotate
interaction-prompt="none"
min-field-of-view="16deg"
interpolation-decay="300"
max-field-of-view="16deg">
<div class="progress-bar hide" slot="progress-bar">
<div class="update-bar"></div>
</div>
<button slot="ar-button" id="ar-button">
View in your space
</button>
</model-viewer>
<!-- Left-Aligned Minimalist Text Box -->
<div class="text-container">
<p class="email"><a href="mailto:[email protected]">[email protected]</a></p>
<p class="quote">let's build something fun together :)</p>
<!-- Recent Work Toggle -->
<p class="recent-work" id="recent-work-toggle">Recent Work ▼</p>
<ul class="recent-work-list" id="recent-work-list">
<li>
<a href="/krampus.html">Krampus Experience</a>
<span class="marquee">A terrifying Christmas legend comes to life...</span>
</li>
<li>
<a href="/snowmenattack.html">Snowmen Attack</a>
<span class="marquee">Survive the frostbitten chaos of attacking snowmen...</span>
</li>
<li>
<a href="/naughtynice">Naughty or Nice</a>
<span class="marquee">Find out if you've been good this year...</span>
</li>
<li>
<a href="/amazonboxexperience">Amazon Box Experience</a>
<span class="marquee">Step inside the world's most mysterious package...</span>
</li>
</ul>
</div>
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/4.0.0/model-viewer.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>