-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboomplanting.html
More file actions
70 lines (58 loc) · 3.15 KB
/
boomplanting.html
File metadata and controls
70 lines (58 loc) · 3.15 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
<!DOCTYPE html>
<html>
<head>
<title>boomplanting</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/icontree.png">
</head>
<body class="body-custom">
<ul id="navbar">
<li class="edge"><a href="index.html">Home</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a href="sources.html">Sources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- Light gray screen -->
<div id="overlay"></div>
<div class="animation-container">
<video id="animation-video" width="100%" height="100%" autoplay muted>
<source src="images/animation-leafs.webm" type="video/mp4">
</video>
</div>
<div class="legenda-container">
<img src="images/3boom legenda" alt="Smiley face" height="500" width="500">
<div class="icon-container">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
<img src="images/boom icoon png.png" alt="Smiley face" height="100" width="100">
</div>
</div>
<script>
var overlay = document.getElementById('overlay');
var animationVideo = document.getElementById('animation-video');
// Add event listener to detect when the video ends
animationVideo.addEventListener('ended', function () {
// Hide the overlay
overlay.style.display = 'none';
});
</script>
</body>
</html>