forked from you-dont-need/You-Dont-Need-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
506 lines (453 loc) · 13.6 KB
/
index.html
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>You Dont Need Javascript</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding-top: 50px;
box-sizing: border-box;
transition: background-color 0.2s, color 0.2s;
min-height: 100vh;
font-size: 16px;
padding-bottom: 60px;
}
body.light-mode {
background-color: #ffffff;
color: #000000;
}
body.dark-mode {
background-color: #171717;
color: #ffffff;
}
#toggleButton {
position: fixed;
top: 20px;
right: 20px;
padding: 10px 20px;
background-color: #23aa04;
color: white;
border: none;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.2s ease;
z-index: 1000;
}
#toggleButton:hover {
background-color: #1e8f03;
}
#pageSection {
max-width: 1200px;
width: 95%;
border: 5px solid #23aa04;
border-radius: 15px;
padding: 30px;
text-align: center;
transition: background-color 0.2s, color 0.2s, border 0.2s, padding 0.2s, margin 0.2s;
}
.dark-mode #pageSection {
background-color: #1e1e1e;
border-color: #1e8f03;
border-radius: 15px;
}
#pageSection p {
font-size: 18px;
}
#pages {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
border-radius: 10px;
transition: background-color 0.2s, color 0.2s;
}
#pages tbody {
border-radius: 10px;
}
#pages td,
#pages th {
padding: 12px;
}
#pages td:first-child {
width: 20%;
min-width: 120px;
}
#pages tr:nth-child(even) {
/* background-color: #f2f2f2; */
background-color: rgba(189, 255, 189, 0.5);
}
#pages tr:nth-child(odd) {
/* background-color: #f2f2f2; */
background-color: rgba(189, 255, 189, 0.25);
}
.dark-mode #pages tr:nth-child(even) {
background-color: #2a2a2a;
}
/* #pages tr:hover {
background-color: rgba(189, 255, 189, 0.372);
} */
/* .dark-mode #pages tr:hover {
background-color: #3a3a3a;
} */
#pages th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04aa6d;
color: white;
}
.pageUrl {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.pageUrl a {
display: inline-flex;
text-transform: capitalize;
font-size: 16px;
letter-spacing: 0.5px;
padding: 10px 20px;
font-family: Verdana;
margin: 2px 0;
color: #04aa6d;
/* background-color: #f0f0f0; */
border-radius: 5px;
text-decoration: none;
transition: background-color 0.2s, color 0.2s;
border: 1px solid #04aa6d;
}
.dark-mode .pageUrl a {
color: #23aa04;
background-color: #2a2a2a;
border-color: #3a3a3a;
}
.pageUrl a:hover {
background-color: #04aa6d;
color: white;
border: none;
}
.dark-mode .pageUrl a:hover {
background-color: black;
}
@media (max-width: 768px) {
body {
padding-left: 10px;
padding-right: 10px;
min-height: auto;
padding-top: 40px;
padding-bottom: 40px;
}
#pageSection {
border: none;
border-radius: 0;
padding: 10px;
width: 100%;
margin: 0;
}
#pages td,
#pages th {
padding: 8px;
font-size: 14px;
}
.pageUrl a {
font-size: 14px;
padding: 4px 8px;
}
}
@media (max-width: 500px) {
#pages td:first-child {
width: 30%;
min-width: 100px;
}
.pageUrl a {
font-size: 12px;
padding: 3px 6px;
}
}
header {
margin-bottom: 30px;
}
h1 {
font-size: 2rem;
color: #04aa6d;
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #242424;
}
.dark-mode h1 a {
color: #23aa04;
}
.description {
font-size: 1.2em;
color: #333;
margin-bottom: 20px;
}
.dark-mode .description {
color: #b0b0b0;
}
/* New styles for the dark mode toggle */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
.dark-mode-toggle {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
}
.dark-mode-toggle label {
position: relative;
width: 80px;
height: 40px;
display: block;
background: #d9d9d9;
border-radius: 100px;
cursor: pointer;
box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.2), inset 0px -5px 15px rgba(255, 255, 255, 0.2);
}
.dark-mode-toggle label:after {
content: '';
position: absolute;
height: 34px;
width: 34px;
background: #f2f2f2;
border-radius: 100px;
top: 3px;
left: 3px;
transition: 0.5s;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.dark-mode-toggle input:checked~label:after {
left: 74px;
transform: translateX(-100%);
background: linear-gradient(180deg, #777, #3a3a3a);
}
.dark-mode-toggle input:checked~label {
background: #242424;
}
.dark-mode-toggle input {
display: none;
}
/* Remove the old button styles */
#toggleButton {
display: none;
}
</style>
</head>
<body class="light-mode">
<!-- Remove the old button -->
<!-- <button id="toggleButton">🌙 Dark Mode</button> -->
<!-- Add the new dark mode toggle -->
<div class="dark-mode-toggle">
<input type="checkbox" id="dark-mode">
<label for="dark-mode"></label>
</div>
<section id="pageSection">
<div id="google_element"></div>
<!-- Load Google Translate script over HTTPS and handle errors -->
<script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=loadGoogleTranslate"
onerror="handleError(this)"></script>
<script type="text/javascript">
function loadGoogleTranslate() {
new google.translate.TranslateElement(
{
pageLanguage: "en",
includedLanguages: "en,hi,pa,sa,mr,ur,bn,es,fr,de,it",
layout: google.translate.TranslateElement.InlineLayout.SIMPLE,
},
"google_element"
);
}
function handleError(error) {
console.error("Error loading Google Translate script:", error);
}
</script>
<header>
<h1><a href="https://github.com/you-dont-need/You-Dont-Need-JavaScript">You Dont Need JavaScript</a></h1>
<p class="description">Explore the power of pure CSS with our collection of interactive demos and examples.
</p>
</header>
<table id="pages">
<tr>
<th>Category</th>
<th>Pages</th>
</tr>
<tr>
<td>3D and Animations</td>
<td class="pageUrl">
<a href="./3D cube animation/index.html">3D Cube Animation</a>
<a href="./3D Rotation Square/animation.html">3D Rotation Square</a>
<a href="./3D transform/index.html">3D Transform</a>
<a href="./Book Animation/index.html">Book Animation</a>
<a href="./CompassLoader/index.html">Compass Loader</a>
<a href="./CSS-Loader/purnasth/index.html">CSS Loader</a>
<a href="./distorted-text-animation/distorted-text.html">Distorted Text Animation</a>
<a href="./DVD Screen Saver/index.html">DVD Screen Saver</a>
<a href="./Jumping Ball/index.html">Jumping Ball</a>
<a href="./leaf-anim/leaf.html">Leaf Animation</a>
<a href="./Light Bulb Animation/bulb.html">Light Bulb Animation</a>
<a href="./Newtons Cradle/newtons-cradle.html">Newton's Cradle</a>
<a href="./Pendulum/index.html">Pendulum</a>
<a href="./ScaryAnimation/scary.html">Scary Animation</a>
<a href="./Scroll-Unblur-Text-Effect/index.html">Scroll Unblur Text Effect</a>
<a href="./Scroll-Video-Animation/index.html">Scroll Video Animation</a>
<a href="./Shuffling squares/shuffling.html">Shuffling Squares</a>
<a href="./Square Animation/index.html">Square Animation</a>
<a href="./Square_Rotation_Animation/squareAnimation.html">Square Rotation Animation</a>
</td>
</tr>
<tr>
<td>CSS Art</td>
<td class="pageUrl">
<a href="./Captain America Shield/index.html">Captain America Shield</a>
<a href="./Growing-flower/growing.html">Growing Flower</a>
<a href="./Panda_Animation/Moving_Panda.html">Panda Animation</a>
<a href="./SolarSystem/index.html">Solar System</a>
</td>
</tr>
<tr>
<td>Layout and Components</td>
<td class="pageUrl">
<a href="./Accordian_css_radio_rules/index.html">Accordion (CSS Radio Rules)</a>
<a href="./accordion/accordion.html">Accordion</a>
<a href="./BLOG POST CARDS/neuocards.html">Blog Post Cards - Neuocards</a>
<a href="./BLOG POST CARDS/claycard.html">Blog Post Cards - Claycard</a>
<a href="./BLOG POST CARDS/Glasscard.html">Blog Post Cards - Glasscard</a>
<a href="./Business-Card/index.html">Business Card</a>
<a href="./Button/indes.html">Button</a>
<a href="./Button/Sliced-Button/index.html">Sliced Button</a>
<a href="./Slideshow/purnasth/index.html">Slideshow</a>
<a href="./Css Tables/index.html">CSS Tables</a>
<a href="./CSS Toggle/index.html">CSS Toggle</a>
<a href="./flex Property/new.html">Flex Property</a>
<a href="./grid/abc.html">Grid</a>
<a href="./infinitecarousel/infinite.html">Infinite Carousel</a>
<a href="./Login/Signin.html">Login</a>
<a href="./Login_Page/Index.html">Login Page</a>
<a href="./Rating-Star/index.html">Rating Star</a>
<a href="./Responsive Footer/index.html">Responsive Footer</a>
<a href="./responsive_hamburger_navbar/index.html">Responsive Hamburger Navbar</a>
<a href="./Search-bar and Tweet/youtube.html">Search Bar and Tweet</a>
<a href="./Shapes/index.html">Shapes</a>
<a href="./stickyheader/index.html">Sticky Header</a>
</td>
</tr>
<tr>
<td>Websites and Projects</td>
<td class="pageUrl">
<a href="./Bitcoin-website/index.html">Bitcoin Website</a>
<a href="./Portfoliowebsite/port.html">Portfolio Website</a>
<a href="./RGBcolorgame/RGBcolorgame.html">RGB Color Game</a>
<a href="./Travelling Website/index.html">Travelling Website</a>
<a href="./Web_Demo/index.html">Real Estate Website</a>
</td>
</tr>
<tr>
<td>Miscellaneous</td>
<td class="pageUrl">
<a href="./Analog-clock/index.html">Analog Clock</a>
<a href="./Cursor/index.html">Cursor</a>
<a href="./z indexing/index.html">Z Indexing</a>
<a href="./Clock-App/index.html">Clock App</a>
</td>
</tr>
<tr>
<td>Examples</td>
<td class="pageUrl">
<a href="./examples/card-slide-hover-effect.html">Card Slide Hover Effect</a>
<a href="./examples/image-border-hover-effect.html">Image Border Hover Effect</a>
<a href="./examples/ModernSidebar.html">Modern Sidebar</a>
<a href="./examples/profile-card-hover-effect.html">Profile Card Hover Effect</a>
<a href="./examples/spin-square-circle.html">Spin Square Circle</a>
<a href="./examples/ToDo.html">To-Do List</a>
</td>
</tr>
<tr>
<td>V2</td>
<td class="pageUrl">
<a href="./V2/examples/floatinglabelsV2/floatinglabel.html">Floating Labels V2</a>
<a href="./V2/examples/butons.html">Buttons V2</a>
</td>
</tr>
<tr>
<td>Misc</td>
<td class="pageUrl">
<a href="./misc/footer.html">Footer</a>
<a href="./misc/card-hover.html">Card Hover</a>
<a href="./misc/ExpandableCardDesign.html">Expandable Card Design</a>
<a href="./misc/basicprofile.html">Basic Profile</a>
<a href="./misc/tree-1.html">Tree 1</a>
<a href="./misc/tabs-2.html">Tabs 2</a>
<a href="./misc/author.html">Author</a>
<a href="./misc/input-filed.html">Input Field</a>
<a href="./misc/hover-1.html">Hover 1</a>
<a href="./misc/navBar.html">Navbar</a>
<a href="./misc/ModernNavbarDesign.html">Modern Navbar Design</a>
<a href="./misc/About.html">About</a>
<a href="./misc/slider.html">Slider</a>
<a href="./misc/menu-1.html">Menu 1</a>
<a href="./misc/ImageHoverGallery.html">Image Hover Gallery</a>
<a href="./misc/glassmorphism-card-design.html">Glassmorphism Card Design</a>
<a href="./misc/todo-1.html">Todo 1</a>
<a href="./misc/tabs-1.html">Tabs 1</a>
<a href="./misc/carousel-1.html">Carousel 1</a>
<a href="./misc/carousel-2.html">Carousel 2</a>
<a href="./misc/carousel-3.html">Carousel 3</a>
<a href="./Glassmorphism login page/index.html">Glassmorphism Login Page</a>
</td>
</tr>
<tr>
<td>FAQ Section</td>
<td class="pageUrl">
<a href="./FAQ SECTION/claymorphismtheme/clay.html">Claymorphism Theme</a>
<a href="./FAQ SECTION/glasstheme/faqglass.html">Glass Theme</a>
<a href="./FAQ SECTION/neumorphismtheme/neu.html">Neumorphism Theme</a>
</td>
</tr>
<tr>
<td>Other</td>
<td class="pageUrl">
<a href="./Author/Author-page.html">Author</a>
<a href="./Web_Demo/index.html">Web Demo</a>
</td>
</tr>
</table>
</section>
<script type="text/javascript">
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"),
s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = "https://embed.tawk.to/66891af8eaf3bd8d4d18ca2d/1i24gr9s5";
s1.charset = "UTF-8";
s1.setAttribute("crossorigin", "*");
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<!--End of Tawk.to Script-->
<script>
const darkModeToggle = document.getElementById("dark-mode");
const body = document.body;
if (localStorage.getItem('darkMode') === 'enabled') {
body.classList.replace("light-mode", "dark-mode");
darkModeToggle.checked = true;
}
darkModeToggle.addEventListener("change", () => {
if (darkModeToggle.checked) {
body.classList.replace("light-mode", "dark-mode");
localStorage.setItem('darkMode', 'enabled');
} else {
body.classList.replace("dark-mode", "light-mode");
localStorage.setItem('darkMode', 'disabled');
}
});
</script>
</body>
</html>