api-ix commited on
Commit
d5f7d07
·
verified ·
1 Parent(s): cb80ad8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +76 -12
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Nicktoons Stream - Premium Player</title>
7
  <style>
8
  :root {
9
  --primary: #ff6b6b;
@@ -31,10 +31,33 @@
31
  overflow-x: hidden;
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  .player-container {
35
  width: 90%;
36
  max-width: 1200px;
37
- margin: 2rem auto;
38
  border-radius: 15px;
39
  overflow: hidden;
40
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
@@ -108,6 +131,11 @@
108
  font-size: 0.9rem;
109
  }
110
 
 
 
 
 
 
111
  .quality-selector {
112
  background: rgba(255, 255, 255, 0.1);
113
  border: 1px solid rgba(255, 255, 255, 0.2);
@@ -167,6 +195,17 @@
167
  }
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
170
  .floating-logo {
171
  position: absolute;
172
  top: -20px;
@@ -226,13 +265,31 @@
226
  background: var(--accent);
227
  font-weight: bold;
228
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  </style>
230
  </head>
231
  <body>
 
 
 
 
 
232
  <div class="player-container">
233
- <div class="floating-logo">NICK</div>
234
  <div class="player-header">
235
- <div class="player-title">Nicktoons Stream</div>
236
  <div class="player-controls">
237
  <button class="control-btn" title="Fullscreen">↗</button>
238
  <button class="control-btn" title="Settings">⚙</button>
@@ -245,13 +302,14 @@
245
  <div class="dot"></div>
246
  </div>
247
 
248
- <video controls autoplay name="media" poster="https://via.placeholder.com/1200x675/292f36/f7fff7?text=Nicktoons+Stream">
249
  <source src="https://fl1.moveonjoy.com/NICKTOONS/index.m3u8" type="application/vnd.apple.mpegurl">
250
  Your browser does not support the video tag.
251
  </video>
252
 
253
  <div class="player-footer">
254
- <div>Now Playing: Nicktoons Live Stream</div>
 
255
  <select class="quality-selector">
256
  <option>Auto Quality</option>
257
  <option>720p HD</option>
@@ -262,12 +320,16 @@
262
  </div>
263
 
264
  <div class="channel-list">
265
- <button class="channel-btn active">Nicktoons</button>
266
- <button class="channel-btn">Nick Jr.</button>
267
- <button class="channel-btn">TeenNick</button>
268
- <button class="channel-btn">Nick Music</button>
269
- <button class="channel-btn">Nick HD</button>
270
- <button class="channel-btn">Nick +1</button>
 
 
 
 
271
  </div>
272
 
273
  <script>
@@ -287,6 +349,8 @@
287
  btn.addEventListener('click', () => {
288
  channelBtns.forEach(b => b.classList.remove('active'));
289
  btn.classList.add('active');
 
 
290
  // In a real app, you would change the video source here
291
  });
292
  });
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Isreal Toon - Premium Animation Stream</title>
7
  <style>
8
  :root {
9
  --primary: #ff6b6b;
 
31
  overflow-x: hidden;
32
  }
33
 
34
+ .brand-header {
35
+ text-align: center;
36
+ margin-bottom: 1.5rem;
37
+ animation: fadeIn 1.5s ease;
38
+ }
39
+
40
+ .brand-title {
41
+ font-size: 2.5rem;
42
+ font-weight: 800;
43
+ background: linear-gradient(to right, var(--primary), var(--accent));
44
+ -webkit-background-clip: text;
45
+ background-clip: text;
46
+ color: transparent;
47
+ margin-bottom: 0.5rem;
48
+ text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
49
+ }
50
+
51
+ .brand-subtitle {
52
+ font-size: 0.9rem;
53
+ opacity: 0.8;
54
+ font-style: italic;
55
+ }
56
+
57
  .player-container {
58
  width: 90%;
59
  max-width: 1200px;
60
+ margin: 1rem auto;
61
  border-radius: 15px;
62
  overflow: hidden;
63
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 
131
  font-size: 0.9rem;
132
  }
133
 
134
+ .credit-text {
135
+ font-size: 0.8rem;
136
+ opacity: 0.7;
137
+ }
138
+
139
  .quality-selector {
140
  background: rgba(255, 255, 255, 0.1);
141
  border: 1px solid rgba(255, 255, 255, 0.2);
 
195
  }
196
  }
197
 
198
+ @keyframes fadeIn {
199
+ from {
200
+ opacity: 0;
201
+ transform: translateY(-20px);
202
+ }
203
+ to {
204
+ opacity: 1;
205
+ transform: translateY(0);
206
+ }
207
+ }
208
+
209
  .floating-logo {
210
  position: absolute;
211
  top: -20px;
 
265
  background: var(--accent);
266
  font-weight: bold;
267
  }
268
+
269
+ .watermark {
270
+ position: fixed;
271
+ bottom: 20px;
272
+ right: 20px;
273
+ font-size: 0.8rem;
274
+ opacity: 0.5;
275
+ transition: opacity 0.3s ease;
276
+ }
277
+
278
+ .watermark:hover {
279
+ opacity: 1;
280
+ }
281
  </style>
282
  </head>
283
  <body>
284
+ <div class="brand-header">
285
+ <h1 class="brand-title">ISREAL TOON</h1>
286
+ <p class="brand-subtitle">Premium Animation Streaming</p>
287
+ </div>
288
+
289
  <div class="player-container">
290
+ <div class="floating-logo">IT</div>
291
  <div class="player-header">
292
+ <div class="player-title">Isreal Toon Live</div>
293
  <div class="player-controls">
294
  <button class="control-btn" title="Fullscreen">↗</button>
295
  <button class="control-btn" title="Settings">⚙</button>
 
302
  <div class="dot"></div>
303
  </div>
304
 
305
+ <video controls autoplay name="media" poster="https://via.placeholder.com/1200x675/292f36/f7fff7?text=Isreal+Toon+Stream">
306
  <source src="https://fl1.moveonjoy.com/NICKTOONS/index.m3u8" type="application/vnd.apple.mpegurl">
307
  Your browser does not support the video tag.
308
  </video>
309
 
310
  <div class="player-footer">
311
+ <div>Now Playing: Isreal Toon Live Stream</div>
312
+ <div class="credit-text">Created by Isreal</div>
313
  <select class="quality-selector">
314
  <option>Auto Quality</option>
315
  <option>720p HD</option>
 
320
  </div>
321
 
322
  <div class="channel-list">
323
+ <button class="channel-btn active">Isreal Toon</button>
324
+ <button class="channel-btn">Classic Toons</button>
325
+ <button class="channel-btn">Anime Hits</button>
326
+ <button class="channel-btn">Kids Zone</button>
327
+ <button class="channel-btn">Toon HD</button>
328
+ <button class="channel-btn">Toon +1</button>
329
+ </div>
330
+
331
+ <div class="watermark">
332
+ Isreal Toon © 2023 | Created by Isreal
333
  </div>
334
 
335
  <script>
 
349
  btn.addEventListener('click', () => {
350
  channelBtns.forEach(b => b.classList.remove('active'));
351
  btn.classList.add('active');
352
+ // Update player title
353
+ document.querySelector('.player-title').textContent = btn.textContent + ' Live';
354
  // In a real app, you would change the video source here
355
  });
356
  });