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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conditions - Live Feeds</title>
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
<link rel="stylesheet" href="/static/css/output.css">
<style>
body {
background: #0a0a0a;
margin: 0;
padding: 0;
}
.video-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 2px;
height: 100vh;
width: 100vw;
}
.video-cell {
position: relative;
background: #111;
overflow: hidden;
}
.video-cell iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.video-label {
position: absolute;
bottom: 8px;
left: 8px;
background: rgba(0,0,0,0.7);
color: rgba(255,255,255,0.8);
padding: 4px 8px;
font-size: 11px;
border-radius: 4px;
z-index: 10;
pointer-events: none;
}
.back-link {
position: fixed;
top: 8px;
left: 8px;
background: rgba(0,0,0,0.7);
color: rgba(255,255,255,0.7);
padding: 6px 10px;
font-size: 11px;
border-radius: 4px;
z-index: 100;
text-decoration: none;
}
.back-link:hover {
background: rgba(0,0,0,0.9);
color: white;
}
@media (max-width: 900px) {
.video-grid {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
}
}
@media (max-width: 600px) {
.video-grid {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
}
}
</style>
</head>
<body>
<a href="/" class="back-link">← Back</a>
<div class="video-grid">
<!-- V1cam - Kilauea West Rim -->
<div class="video-cell">
<iframe
src="https://www.youtube.com/embed/tk0tfYDxrUA?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0"
allow="autoplay; encrypted-media; picture-in-picture"
allowfullscreen>
</iframe>
<span class="video-label">V1cam - West</span>
</div>
<!-- V2cam - Kilauea East Rim -->
<div class="video-cell">
<iframe
src="https://www.youtube.com/embed/fiyttmA7YkA?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0"
allow="autoplay; encrypted-media; picture-in-picture"
allowfullscreen>
</iframe>
<span class="video-label">V2cam - East</span>
</div>
<!-- V3cam - Kilauea South Rim -->
<div class="video-cell">
<iframe
src="https://www.youtube.com/embed/gXKuUyKt8mc?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0"
allow="autoplay; encrypted-media; picture-in-picture"
allowfullscreen>
</iframe>
<span class="video-label">V3cam - South</span>
</div>
<!-- Hawaii Wind - Windy -->
<div class="video-cell">
<iframe
src="https://embed.windy.com/embed2.html?lat=19.5&lon=-155.5&zoom=8&level=surface&overlay=wind&product=ecmwf&menu=&message=&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1">
</iframe>
<span class="video-label">Hawaii Wind</span>
</div>
<!-- Hawaii Waves - Windy -->
<div class="video-cell">
<iframe
src="https://embed.windy.com/embed2.html?lat=19.5&lon=-155.5&zoom=8&level=surface&overlay=waves&product=ecmwf&menu=&message=&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1">
</iframe>
<span class="video-label">Hawaii Waves</span>
</div>
<!-- National Weather - Windy US (zoomed out) -->
<div class="video-cell">
<iframe
src="https://embed.windy.com/embed2.html?lat=39&lon=-98&zoom=2&level=surface&overlay=rain&product=ecmwf&menu=&message=&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1">
</iframe>
<span class="video-label">National Weather</span>
</div>
</div>
</body>
</html>
|