-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
417 lines (370 loc) Β· 20.4 KB
/
Copy pathindex.html
File metadata and controls
417 lines (370 loc) Β· 20.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YakaJS - All HTML Files & Resources</title>
<!-- Google Fonts - Outfit -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- YakaJS -->
<script src="https://cdn.jsdelivr.net/gh/Yaka-UI-Labs/YakaJS@latest/dist/min.yaka.js"></script>
<style>
/* Raw Black with Noise & Gradient Design */
/* Outfit Font - loaded via <link> tag in head */
* {
font-family: 'Outfit', system-ui, sans-serif;
}
/* Raw Black Background with Noise and Gradient */
body {
background:
/* Subtle gradient overlay */
linear-gradient(135deg,
rgba(99, 102, 241, 0.05) 0%,
rgba(139, 92, 246, 0.03) 25%,
rgba(168, 85, 247, 0.05) 50%,
rgba(217, 70, 239, 0.03) 75%,
rgba(99, 102, 241, 0.05) 100%
),
/* Noise texture using SVG pattern */
url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"),
/* Base black */
#000000;
background-size: 400% 400%, 200px 200px, auto;
background-attachment: fixed, fixed, fixed;
animation: gradientShift 20s ease infinite;
min-height: 100vh;
}
@keyframes gradientShift {
0% { background-position: 0% 50%, 0 0, 0 0; }
50% { background-position: 100% 50%, 100px 100px, 0 0; }
100% { background-position: 0% 50%, 0 0, 0 0; }
}
/* Glassmorphism on Black */
.glass {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.6),
inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}
.glass-dark {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.06);
box-shadow:
0 4px 24px 0 rgba(0, 0, 0, 0.8),
inset 0 1px 0 0 rgba(255, 255, 255, 0.03);
}
.glass-card {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.7),
inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
}
/* Smooth transitions */
.transition-glass {
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-4px) scale(1.01);
border-color: rgba(139, 92, 246, 0.3);
box-shadow:
0 16px 48px 0 rgba(139, 92, 246, 0.2),
0 0 80px 0 rgba(139, 92, 246, 0.1),
inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.badge {
background: rgba(255, 255, 255, 0.1);
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge-primary {
background: rgba(99, 102, 241, 0.2);
border-color: rgba(99, 102, 241, 0.4);
color: #a5b4fc;
}
.badge-success {
background: rgba(34, 197, 94, 0.2);
border-color: rgba(34, 197, 94, 0.4);
color: #86efac;
}
.badge-warning {
background: rgba(251, 191, 36, 0.2);
border-color: rgba(251, 191, 36, 0.4);
color: #fde047;
}
</style>
</head>
<body class="text-white">
<!-- Header -->
<header class="glass-dark sticky top-0 z-50 py-6">
<div class="container mx-auto px-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-4">
<h1 class="text-3xl font-bold">YakaJS</h1>
<span class="badge badge-primary">v1.1.0</span>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#demos" class="hover:text-yellow-300 transition">Demos</a>
<a href="#testing" class="hover:text-yellow-300 transition">Testing</a>
<a href="#testing" class="hover:text-yellow-300 transition">Benchmarks</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS" target="_blank" class="hover:text-yellow-300 transition">GitHub</a>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-20">
<div class="container mx-auto px-4 text-center">
<div class="glass-card rounded-3xl p-12 max-w-4xl mx-auto transition-glass">
<h2 class="text-6xl md:text-7xl font-extrabold mb-6 leading-tight">
YakaJS Resources
</h2>
<p class="text-xl md:text-2xl mb-8 text-white/90 font-light">
All HTML files and resources in one place
</p>
<div class="flex flex-wrap justify-center gap-4 mb-8">
<div class="glass px-8 py-4 rounded-2xl">
<div class="text-4xl font-bold">18</div>
<div class="text-sm font-medium opacity-80">HTML Files</div>
</div>
<div class="glass px-8 py-4 rounded-2xl">
<div class="text-4xl font-bold">15</div>
<div class="text-sm font-medium opacity-80">Demo Pages</div>
</div>
<div class="glass px-8 py-4 rounded-2xl">
<div class="text-4xl font-bold">234</div>
<div class="text-sm font-medium opacity-80">Features</div>
</div>
</div>
</div>
</div>
</section>
<!-- Main Demos Hub -->
<section id="demos" class="py-16">
<div class="container mx-auto px-4">
<h3 class="text-4xl font-bold text-center mb-12">π― Interactive Demos</h3>
<!-- Featured: Main Demo Index -->
<div class="max-w-4xl mx-auto mb-12">
<a href="demos/index.html" class="glass-card rounded-3xl p-10 transition-glass hover:no-underline text-white block">
<div class="text-center">
<div class="text-7xl mb-6">π</div>
<h4 class="text-4xl font-extrabold mb-4">Main Demos Hub</h4>
<p class="text-xl text-white/80 mb-6 font-light">Start here! The central hub for all YakaJS demos with beautiful UI</p>
<span class="inline-block bg-white text-purple-700 px-8 py-4 rounded-2xl font-bold shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300">
Open Demos Hub β
</span>
</div>
</a>
</div>
<h4 class="text-3xl font-bold text-center mb-10">Or Browse Individual Demos:</h4>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- All Features Demo -->
<a href="demos/all-features.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="flex items-center justify-between mb-3">
<div class="text-5xl">π</div>
<span class="badge badge-primary">Featured</span>
</div>
<h4 class="text-2xl font-bold mb-3">All Features</h4>
<p class="text-white/80 leading-relaxed">Complete showcase of all 234 YakaJS features in one comprehensive demo</p>
</a>
<!-- Core Features -->
<a href="demos/core-features.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π―</div>
<h4 class="text-2xl font-bold mb-3">Core Features</h4>
<p class="text-white/80 leading-relaxed">DOM manipulation, selectors, events, and basic operations</p>
</a>
<!-- Animations -->
<a href="demos/animations.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">β¨</div>
<h4 class="text-2xl font-bold mb-3">Animations</h4>
<p class="text-white/80 leading-relaxed">15+ built-in animations including fade, slide, zoom, bounce, and more</p>
</a>
<!-- Forms & Validation -->
<a href="demos/forms.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π</div>
<h4 class="text-2xl font-bold mb-3">Forms & Validation</h4>
<p class="text-white/80 leading-relaxed">Real-time form validation with 15+ built-in validators</p>
</a>
<!-- UI Components -->
<a href="demos/components.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π§©</div>
<h4 class="text-2xl font-bold mb-3">UI Components</h4>
<p class="text-white/80 leading-relaxed">20+ ready-to-use components: modals, tooltips, tabs, dropdowns</p>
</a>
<!-- Sliders & Carousels -->
<a href="demos/sliders-carousels.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π’</div>
<h4 class="text-2xl font-bold mb-3">Sliders & Carousels</h4>
<p class="text-white/80 leading-relaxed">Advanced sliders and carousels with touch support</p>
</a>
<!-- Draggable, Resizable, Charts -->
<a href="demos/draggable-resize-chart.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π</div>
<h4 class="text-2xl font-bold mb-3">Draggable & Charts</h4>
<p class="text-white/80 leading-relaxed">Interactive elements with drag, resize, and chart features</p>
</a>
<!-- State Management -->
<a href="demos/state.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">πͺ</div>
<h4 class="text-2xl font-bold mb-3">State Management</h4>
<p class="text-white/80 leading-relaxed">Vuex/Redux-style store with undo/redo and persistence</p>
</a>
<!-- Routing -->
<a href="demos/routing.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">πΊοΈ</div>
<h4 class="text-2xl font-bold mb-3">SPA Routing</h4>
<p class="text-white/80 leading-relaxed">Client-side routing with navigation guards and parameters</p>
</a>
<!-- Reactivity & Signals -->
<a href="demos/reactivity.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">β‘</div>
<h4 class="text-2xl font-bold mb-3">Signals & Reactivity</h4>
<p class="text-white/80 leading-relaxed">SolidJS-inspired reactive primitives with signals and effects</p>
</a>
<!-- Security -->
<a href="demos/security.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π</div>
<h4 class="text-2xl font-bold mb-3">Security Features</h4>
<p class="text-white/80 leading-relaxed">XSS protection, CSRF tokens, and input sanitization</p>
</a>
<!-- Advanced Features -->
<a href="demos/advanced.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π</div>
<h4 class="text-2xl font-bold mb-3">Advanced Features</h4>
<p class="text-white/80 leading-relaxed">Web Workers, IndexedDB, Bluetooth, and more</p>
</a>
<!-- New Features -->
<a href="demos/new-features.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="flex items-center justify-between mb-3">
<div class="text-5xl">π</div>
<span class="badge badge-success">New</span>
</div>
<h4 class="text-2xl font-bold mb-3">New Features</h4>
<p class="text-white/80 leading-relaxed">Latest additions and enhancements to YakaJS</p>
</a>
<!-- Plugin System Demo -->
<a href="demos/plugin-system-demo.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-5xl mb-3">π</div>
<h4 class="text-2xl font-bold mb-3">Plugin System</h4>
<p class="text-white/80 leading-relaxed">Extend YakaJS with custom plugins and modules</p>
</a>
<!-- Bug Fixes Test -->
<a href="demos/bug-fixes-test.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="flex items-center justify-between mb-3">
<div class="text-5xl">π</div>
<span class="badge badge-warning">QA</span>
</div>
<h4 class="text-2xl font-bold mb-3">Bug Fixes Test</h4>
<p class="text-white/80 leading-relaxed">Verification tests for bug fixes and edge cases</p>
</a>
</div>
</div>
</section>
<!-- Testing & Benchmarks -->
<section id="testing" class="py-16">
<div class="container mx-auto px-4">
<h3 class="text-4xl font-bold text-center mb-12">π§ͺ Testing & Quality Assurance</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-4xl mx-auto">
<!-- Test Suite -->
<a href="tests/index.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-6xl mb-4 text-center">π§ͺ</div>
<h4 class="text-2xl font-bold mb-3 text-center">Test Suite</h4>
<p class="text-white/80 text-center leading-relaxed">Run the complete YakaJS test suite to verify all features</p>
</a>
<!-- Benchmarks -->
<a href="benchmarks.html" class="glass-card rounded-2xl p-8 transition-glass hover:no-underline text-white">
<div class="text-6xl mb-4 text-center">β‘</div>
<h4 class="text-2xl font-bold mb-3 text-center">Performance Benchmarks</h4>
<p class="text-white/80 text-center leading-relaxed">Compare YakaJS performance against other libraries</p>
</a>
</div>
</div>
</section>
<!-- Quick Stats -->
<section class="py-16">
<div class="container mx-auto px-4">
<div class="glass-card rounded-2xl p-8 max-w-4xl mx-auto">
<h3 class="text-3xl font-bold mb-6 text-center">π Repository Statistics</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
<div>
<div class="text-4xl font-bold text-purple-400">234</div>
<div class="text-sm text-white/70">Total Features</div>
</div>
<div>
<div class="text-4xl font-bold text-blue-400">18</div>
<div class="text-sm text-white/70">HTML Pages</div>
</div>
<div>
<div class="text-4xl font-bold text-green-400">151 KB</div>
<div class="text-sm text-white/70">Minified Size</div>
</div>
<div>
<div class="text-4xl font-bold text-yellow-400">0</div>
<div class="text-sm text-white/70">Dependencies</div>
</div>
</div>
</div>
</div>
</section>
<!-- Quick Links -->
<section class="py-16">
<div class="container mx-auto px-4">
<h3 class="text-3xl font-bold text-center mb-8">π Quick Links</h3>
<div class="flex flex-wrap justify-center gap-4">
<a href="https://github.com/Yaka-UI-Labs/YakaJS" target="_blank" class="glass px-6 py-3 rounded-xl hover:bg-white/10 transition">
π¦ GitHub Repository
</a>
<a href="https://www.npmjs.com/package/yakajs" target="_blank" class="glass px-6 py-3 rounded-xl hover:bg-white/10 transition">
π npm Package
</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS#readme" target="_blank" class="glass px-6 py-3 rounded-xl hover:bg-white/10 transition">
π Documentation
</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS/blob/main/FEATURES.md" target="_blank" class="glass px-6 py-3 rounded-xl hover:bg-white/10 transition">
π― Features List
</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS/blob/main/TYPESCRIPT.md" target="_blank" class="glass px-6 py-3 rounded-xl hover:bg-white/10 transition">
π TypeScript Guide
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="glass-dark py-8 mt-20">
<div class="container mx-auto px-4 text-center">
<p class="mb-4">YakaJS - Next-Gen JavaScript Library</p>
<div class="flex justify-center space-x-6 mb-4">
<a href="https://github.com/Yaka-UI-Labs/YakaJS" target="_blank" class="hover:text-yellow-300 transition">GitHub</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS#readme" target="_blank" class="hover:text-yellow-300 transition">Documentation</a>
<a href="https://github.com/Yaka-UI-Labs/YakaJS/issues" target="_blank" class="hover:text-yellow-300 transition">Issues</a>
</div>
<p class="text-sm text-gray-300">Released under the MIT License</p>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
_('a[href^="#"]').on('click', function(e) {
e.preventDefault();
const target = _(this.getAttribute('href'));
if (target && target.elements && target.elements.length) {
target.get(0).scrollIntoView({ behavior: 'smooth' });
}
});
</script>
</body>
</html>