-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuper_momo_final_cutscene_4_sundrop.html
48 lines (39 loc) · 1.18 KB
/
super_momo_final_cutscene_4_sundrop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Momo's Adventure!</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
height: 100vh;
position: relative; /* to allow positioning of children relative to the body */
}
#scene {
flex-grow: 1;
background: url('graphics/final_cutscene_4_sundrop.png') no-repeat center center;
background-size: cover;
}
</style>
</head>
<body>
<div id="scene"></div>
<script>
setTimeout(function() {
window.location.href = 'super_momo_final_cutscene_5_oof.html';
}, 5000); // 5000 milliseconds (5 seconds)
document.body.addEventListener('click', function() {
window.location.href = 'super_momo_final_cutscene_5_oof.html';
});
</script>
</body>
</html>