<video
Browse filessrc="rabbit-section.mp4"
playsinline
muted
></video>
- index.html +5 -1
- video-section.html +77 -0
index.html
CHANGED
|
@@ -60,7 +60,11 @@
|
|
| 60 |
</svg>
|
| 61 |
</div>
|
| 62 |
</div>
|
| 63 |
-
|
| 64 |
<div class="rabbithole-footer">
|
| 65 |
<span>Powered by Wikipedia API 路 Built for curious minds</span>
|
| 66 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
</svg>
|
| 61 |
</div>
|
| 62 |
</div>
|
|
|
|
| 63 |
<div class="rabbithole-footer">
|
| 64 |
<span>Powered by Wikipedia API 路 Built for curious minds</span>
|
| 65 |
</div>
|
| 66 |
+
|
| 67 |
+
<script src="components/auth-modal.js"></script>
|
| 68 |
+
<script src="components/history-modal.js"></script>
|
| 69 |
+
<script src="components/user-profile.js"></script>
|
| 70 |
+
<script src="script.js"></script>
|
video-section.html
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Video Section</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<style>
|
| 9 |
+
.video-section {
|
| 10 |
+
position: relative;
|
| 11 |
+
width: 100%;
|
| 12 |
+
height: 100vh;
|
| 13 |
+
overflow: hidden;
|
| 14 |
+
display: flex;
|
| 15 |
+
align-items: center;
|
| 16 |
+
justify-content: center;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.video-section video {
|
| 20 |
+
position: absolute;
|
| 21 |
+
top: 0;
|
| 22 |
+
left: 0;
|
| 23 |
+
width: 100%;
|
| 24 |
+
height: 100%;
|
| 25 |
+
object-fit: cover;
|
| 26 |
+
z-index: -1;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.video-content {
|
| 30 |
+
text-align: center;
|
| 31 |
+
color: white;
|
| 32 |
+
z-index: 1;
|
| 33 |
+
background: rgba(0, 0, 0, 0.5);
|
| 34 |
+
padding: 2rem;
|
| 35 |
+
border-radius: 1rem;
|
| 36 |
+
max-width: 80%;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.video-content h2 {
|
| 40 |
+
font-size: 2.5rem;
|
| 41 |
+
margin-bottom: 1rem;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.video-content p {
|
| 45 |
+
font-size: 1.2rem;
|
| 46 |
+
margin-bottom: 2rem;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.cta-button {
|
| 50 |
+
background: #8b5cf6;
|
| 51 |
+
color: white;
|
| 52 |
+
border: none;
|
| 53 |
+
padding: 1rem 2rem;
|
| 54 |
+
font-size: 1.1rem;
|
| 55 |
+
border-radius: 50px;
|
| 56 |
+
cursor: pointer;
|
| 57 |
+
transition: all 0.3s ease;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.cta-button:hover {
|
| 61 |
+
background: #7c3aed;
|
| 62 |
+
transform: translateY(-3px);
|
| 63 |
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
| 64 |
+
}
|
| 65 |
+
</style>
|
| 66 |
+
</head>
|
| 67 |
+
<body>
|
| 68 |
+
<div class="video-section">
|
| 69 |
+
<video src="rabbit-section.mp4" playsinline muted autoplay loop></video>
|
| 70 |
+
<div class="video-content">
|
| 71 |
+
<h2>Discover the Quantum Rabbit Hole</h2>
|
| 72 |
+
<p>Explore infinite knowledge through our immersive Wikipedia-powered experience</p>
|
| 73 |
+
<button class="cta-button" onclick="window.location.href='index.html'">Enter the Rabbit Hole</button>
|
| 74 |
+
</div>
|
| 75 |
+
</div>
|
| 76 |
+
</body>
|
| 77 |
+
</html>
|