-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFireFlyForest.html
More file actions
49 lines (42 loc) · 1.02 KB
/
FireFlyForest.html
File metadata and controls
49 lines (42 loc) · 1.02 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
<!doctype html>
<html>
<!-- Bee's Based Parameters:
Use Real Time and set peak day to be 1pm and reach dark at 8pm
?real_time=true&peak_day_hour=13&peak_night_hour=20
-->
<head>
<meta charset="utf-8">
<title>Firefly Forest! - Bee's Backdrops</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22><text y=%2216%22 font-size=%2216%22>🐝</text></svg>">
<style>
body {
margin: 0;
overflow: hidden;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
canvas {
display: block;
width: auto;
height: 100vh;
width: 100vw;
object-fit: cover;
}
</style>
</head>
<body>
<script src="lib/pixi.min.js"></script>
<script src="lib/advanced-blend-modes.min.js"></script>
<script src="lib/pixi-filters.js"></script>
<script>
window.FireFlyMain = true;
</script>
<script type="module" src="src/scenes/FireFlyForest.js"></script>
</body>
</html>