-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
176 lines (158 loc) · 6.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shadow Voyager</title>
<style>
body {
margin: 0;
overflow: hidden;
font-family: 'Arial', sans-serif;
background-color: #1e1e2f;
}
#splash-screen {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: linear-gradient(120deg, #1e1e2f, #232356);
display: flex;
justify-content: center;
align-items: center;
color: white;
z-index: 10;
flex-direction: column;
animation: fadeOut 3s ease-out 5s forwards;
}
.splash-text {
font-size: 3rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 5px;
animation: zoomIn 1.5s ease-in-out;
margin: 10px 0;
}
.video-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; /* Ensures the video covers the entire background */
z-index: -1; /* Places the video behind other content */
}
.sub-text {
font-size: 1.5rem;
animation: fadeIn 2s ease-in-out 2s forwards;
opacity: 0;
}
#enter-game {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #ff5c5c;
color: white;
padding: 15px 30px;
font-size: 1.2rem;
border: none;
border-radius: 5px;
display: none;
cursor: pointer;
z-index: 1;
}
@keyframes zoomIn {
0% {
transform: scale(0.5);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOut {
to {
opacity: 0;
visibility: hidden;
}
}
#main-menu {
display: none;
background: #121212;
color: white;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
</style>
</head>
<body>
<video class="video-background" autoplay muted loop>
<source src="6128196-uhd_2880_2160_24fps.mp4" type="video/mp4">
</video>
<!-- Splash Screen -->
<div id="splash-screen">
<div class="splash-text">Shadow Voyager</div>
<div class="sub-text">Get Ready to Play!</div>
</div>
<!-- Main Menu -->
<div id="main-menu">
<h1>Welcome to Shadow Voyager</h1>
<br>
<br>
<!-- Enter Game Button -->
<button id="enter-game">Enter Game</button>
<p>Press Start to Play!</p>
</div>
<script>
// Show "Enter Game" button after splash screen animation
setTimeout(() => {
document.getElementById('enter-game').style.display = 'block';
}, 5000); // Same duration as splash fade-out
// Handle "Enter Game" button click
document.getElementById('enter-game').addEventListener('click', () => {
// Hide splash screen and main menu
document.getElementById('splash-screen').style.display = 'none';
document.getElementById('enter-game').style.display = 'none';
document.getElementById('main-menu').style.display = 'none';
// Load Godot game
const iframe = document.createElement('iframe');
iframe.src = 'index.html'; // Path to Godot's exported game
iframe.style.width = '100vw';
iframe.style.height = '100vh';
iframe.style.border = 'none';
document.body.appendChild(iframe);
});
</script>
</body>
</html>
<!-- Enter Game Button -->
<button id="enter-game">Enter Game</button>
<script>
// Show "Enter Game" button after splash screen animation
setTimeout(() => {
document.getElementById('enter-game').style.display = 'block';
}, 5000); // Same duration as splash fade-out
// Handle "Enter Game" button click
document.getElementById('enter-game').addEventListener('click', () => {
document.getElementById('splash-screen').style.display = 'none';
document.getElementById('enter-game').style.display = 'none';
document.getElementById('main-menu').style.display = 'flex';
});
</script>
</body>
</html>