-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
74 lines (67 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DEANSand</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- 🔁 VIDEO BACKGROUND -->
<div class="video-wrapper">
<video class="video-bg" autoplay muted loop playsinline>
<source src="media/background.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<!-- 🖼️ FADE-IN BACKGROUND OVERLAY -->
<div class="background-fade"></div>
<!-- 🔷 HEXAGON GRID -->
<div class="hex-grid main-content"> <!-- NOTE: depth is first = deepest, last = surface front -->
<div class="hex-container outer-container hex-NORTHEAST">
<a target="_blank" href="https://www.instagram.com/mattdeans/" class="hex-inner outer-inner">Social</a>
</div>
<div class="hex-container outer-container hex-SOUTHEAST">
<a target="_blank" href="https://www.linkedin.com/in/%E3%83%9E%E3%82%B7%E3%83%A5%E3%83%BC-%E3%83%87%E3%82%A4%E3%83%BC%E3%83%B3%E3%82%BA-a7783b289/" class="hex-inner outer-inner">Work CV</a>
</div>
<div class="hex-container outer-container hex-SOUTHWEST">
<a href="memory/memory.html" class="hex-inner outer-inner">MEMORY</a>
</div>
<div class="hex-container outer-container hex-NORTHWEST">
<a href="/cdn-cgi/l/email-protection#90f4f5f1fee3fdf1e4e4f8f5e7f3f8f1e2fcf5e3bbd8d5c8d0f7fdf1f9fcbef3fffdafe3e5f2faf5f3e4add4d5d1dec3f1fef4d3dfdec4d1d3c4" class="hex-inner outer-inner">Contact</a>
</div>
<div class="hex-container outer-container hex-SOUTH">
<a href="projecty.html" class="hex-inner outer-inner">Project <br>986</a>
</div>
<div class="hex-container outer-container hex-NORTH">
<a href="PAGE-NORTH.html" class="hex-inner outer-inner">Associates</a>
</div>
<div class="hex-container main-container main">
<a href="jp.html" class="hex-inner main-inner">HOME <br/>日本語</a>
</div>
</div>
<script src="script.js"></script>
<!-- Preload videos for faster navigation -->
<script>
// Preload other videos for faster navigation
function preloadVideos(videoUrls) {
videoUrls.forEach(url => {
const link = document.createElement('link');
link.rel = 'preload';
link.as = 'video';
link.href = url;
link.type = 'video/mp4';
document.head.appendChild(link);
});
}
// Preload videos after page load
document.addEventListener('DOMContentLoaded', function() {
preloadVideos([
'media/12530-239934669_medium.mp4',
'media/138556-769988117_medium.mp4'
]);
});
</script>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
</body>
</html>