-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (49 loc) · 1.81 KB
/
index.html
File metadata and controls
61 lines (49 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steve Wang - Engineering Reality</title>
<meta name="description"
content="Steve Wang - ECE Student & Tech Enthusiast. Engineering elegant software and intricate hardware.">
<!-- Anti-Flash: Hide until ready -->
<style>
body {
background-color: #000000;
opacity: 0;
transition: opacity 0.5s ease-out;
}
#app-view {
opacity: 1;
transition: opacity 0.3s ease-out;
}
</style>
<!-- Antigravity Design System -->
<link rel="stylesheet" href="css/antigravity.css">
</head>
<body>
<!-- ============================================
APP SHELL - Persistent, never reloaded
============================================ -->
<!-- Horizon Ambient Light Effect -->
<div class="ag-horizon" aria-hidden="true"></div>
<!-- Floating Island Navigation -->
<nav class="ag-nav">
<a href="#work" data-link class="active">Work</a>
<a href="#about" data-link>About</a>
<a href="#contact" data-link>Contact</a>
</nav>
<!-- Antigravity Cursor - Three.js Particle Field -->
<canvas id="ag-cursor-canvas" aria-hidden="true"></canvas>
<!-- ============================================
DYNAMIC VIEW CONTAINER
Content is injected here by the router
============================================ -->
<main id="app-view"></main>
<!-- GSAP + ScrollTrigger (CDN — exposes window.gsap & window.ScrollTrigger) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<!-- Scripts -->
<script type="module" src="js/antigravity.main.js"></script>
</body>
</html>