-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
264 lines (227 loc) · 6.48 KB
/
index.html
File metadata and controls
264 lines (227 loc) · 6.48 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!--
===========================================================
STREAMLAYER — Advanced Multistream Dashboard
===========================================================
Tekijä: Toni
Sijainti: Oulu, Suomi
Projekti: StreamLayer (HTML5 + CSS3 + JS)
Kuvaus:
Kevyt, moderni ja täysin responsiivinen hallintapaneeli
Twitch- ja Kick-striimien seuraamiseen. Tukee useita
yhtäaikaisia striimejä, suosikkilistoja, automaattista
LIVE-seurantaa ja kustomoitavaa grid-asettelua.
GitHub Repo:
https://github.com/ipappa74/streamlayer
GitHub Pages:
https://ipappa74.github.io/streamlayer/
Kontaktit:
Email: toni.spams@gmail.com
GitHub: https://github.com/ipappa74
Kick: https://kick.com/ipappa
Ominaisuudet:
• StreamLayer Blue UI (Neon & Glassmorphism)
• Monialustatuki: Kick & Twitch integraatiot
• Täysi mobiilioptimointi (stacked view + mobile menu)
• Suosikit automaattisella live-statuksella
• Reaaliaikaiset katsojamäärät (DecAPI & Kick API)
• Vedettävät ikkunat (Drag & Drop)
• Mute-tilan ja asetusten tallennus (localStorage)
• Integroitu chat-hallinta ja auto-open-toiminto
Lisenssi:
CC BY-NC-SA 4.0 License
===========================================================
-->
<!DOCTYPE html>
<html lang="fi">
<head>
<meta charset="UTF-8">
<title>StreamLayer — Multistream</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Faviconit -->
<link rel="apple-touch-icon" sizes="180x180" href="/streamlayer/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/streamlayer/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/streamlayer/img/favicon-16x16.png">
<link rel="manifest" href="/streamlayer/img/site.webmanifest">
<style>
/* GLOBAL */
body {
margin: 0;
padding: 0;
background: #0a0a0b;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: #f5f5f7;
overflow: hidden;
height: 100vh;
}
/* Neon glow animation - StreamLayer Blue */
@keyframes neonPulse {
0% { text-shadow: 0 0 4px #007aff55, 0 0 8px #007aff33; }
50% { text-shadow: 0 0 10px #007aff99, 0 0 18px #007aff55; }
100% { text-shadow: 0 0 4px #007aff55, 0 0 8px #007aff33; }
}
/* ANIMATED NEON GRID + PARTICLES */
.bg-container {
position: fixed;
inset: 0;
overflow: hidden;
z-index: -1;
}
.neon-grid {
position: absolute;
inset: 0;
z-index: -2;
/* Ruudukon väri muutettu siniseksi */
background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'>\
<rect width='60' height='60' fill='none' stroke='rgba(0,122,255,0.15)' stroke-width='1'/>\
</svg>");
background-size: 60px 60px;
animation: gridScroll 18s linear infinite;
opacity: 0.3;
filter: drop-shadow(0 0 4px #007aff33);
}
@keyframes gridScroll {
0% { background-position: 0 0; }
100% { background-position: 60px 60px; }
}
.particles {
position: absolute;
inset: 0;
pointer-events: none;
}
.particle {
position: absolute;
width: 3px;
height: 3px;
background: #007aff;
border-radius: 50%;
opacity: 0.6;
filter: drop-shadow(0 0 4px #007aff);
animation: particleMove linear infinite;
}
@keyframes particleMove {
0% { transform: translateY(0) translateX(0); opacity: 0.7; }
100% { transform: translateY(-120vh) translateX(20px); opacity: 0; }
}
/* CRT scanline effect */
.crt-scanlines {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background: repeating-linear-gradient(
to bottom,
rgba(0, 0, 0, 0.2) 0px,
rgba(0, 0, 0, 0.2) 1px,
transparent 1px,
transparent 2px
);
opacity: 0.5;
}
/* HERO SECTION */
.hero {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
position: relative;
z-index: 2;
}
.title {
font-size: 72px;
font-weight: 800;
color: #f5f5f7;
text-transform: uppercase;
letter-spacing: -2px;
margin: 0;
animation: neonPulse 3s ease-in-out infinite;
}
.title span {
color: #007aff;
}
.subtitle {
margin-top: 15px;
font-size: 20px;
color: #a1a1a6;
max-width: 650px;
line-height: 1.5;
}
/* BUTTON */
.launch-btn {
margin-top: 45px;
padding: 16px 42px;
font-size: 18px;
font-weight: 700;
color: #ffffff;
background: #007aff;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 14px 0 rgba(0,118,255,0.39);
}
.launch-btn:hover {
background: #005ecb;
box-shadow: 0 6px 20px rgba(0,118,255,0.5);
transform: translateY(-3px);
}
/* FOOTER */
.footer {
position: absolute;
bottom: 25px;
width: 100%;
text-align: center;
color: #424245;
font-size: 12px;
letter-spacing: 1px;
}
/* Mobiili-skaalaus */
@media (max-width: 768px) {
.title { font-size: 42px; letter-spacing: -1px; }
.subtitle { font-size: 16px; max-width: 90%; }
.launch-btn { width: 80%; padding: 18px; }
}
</style>
</head>
<body>
<div class="bg-container">
<div class="neon-grid"></div>
<div class="particles" id="particles"></div>
<div class="crt-scanlines"></div>
</div>
<div class="hero">
<h1 class="title">Stream<span>Layer</span></h1>
<p class="subtitle">
Katso useita Twitch- ja Kick-striimejä rinnakkain, seuraa live-tilaa ja räätälöi katselukokemuksesi.
</p>
<!-- Vaihda 'app.html' sovelluksesi tiedostonimeen -->
<button class="launch-btn" onclick="location.href='streamlayer.html'">
Avaa sovellus
</button>
</div>
<div class="footer">
© 2026 StreamLayer — Built for the community by Toni
</div>
<script>
/* Generate neon particles */
const container = document.getElementById("particles");
for (let i = 0; i < 45; i++) {
const p = document.createElement("div");
p.className = "particle";
const size = Math.random() * 2 + 1.5;
p.style.width = size + "px";
p.style.height = size + "px";
p.style.left = Math.random() * 100 + "vw";
p.style.top = Math.random() * 100 + "vh";
const duration = Math.random() * 15 + 10;
p.style.animationDuration = duration + "s";
const delay = Math.random() * -duration;
p.style.animationDelay = delay + "s";
container.appendChild(p);
}
</script>
</body>
</html>