-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
538 lines (498 loc) · 29.3 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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#ffd000">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#ffd000">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#ffd000">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#ffd000">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="UiLib Studio A great collection of UI elements for the web"/>
<meta name="author" content="Rishi Bajpai"/>
<link rel="shortcut icon" href="assets/images/favicon.webp">
<title>UiLib Studio</title>
<style type="text/css">
html, body{
margin: 0;
padding: 0;
width: 100%;
}
body {
height: 2000px;
transform-style: preserve-3d;
overflow-y: scroll;
overflow-x: hidden;
font-family: 'Quicksand', sans-serif;
text-align: center;
background: #0c0c0c;
}
canvas{
position: relative;
filter: contrast(250%);
}
/* ---------------- #navigation Menu Styles ------------------- */
.logo {
float: left;
}
.logo img {
width: 160px;
height: auto;
margin: 10px;
}
/* ======================== navigation part ========================== */
#navbar{
position: absolute;
height: 80px;
display: flex;
align-items: flex-start;
justify-content: space-between;
width: 100%;
max-width: 100%;
z-index: 99;
}
#logo a{
text-decoration: none;
}
#logo a img{
width: 160px;
height: auto;
margin: 10px;
}
#nav{
padding: 10px;
}
#nav-items li{
display: inline-block;
list-style-type: none;
padding: 0px 10px;
}
#nav-items li a{
color: #fff;
text-decoration: none;
letter-spacing: 0.2em;
font-weight: 400;
font-size: 1.1em;
font-family: var(--yatra);
}
#nav-items li a i{
display: none;
}
#nav-items li a:hover{
color: rgb(255, 208, 0);
transition: 1s ease;
}
#nav-items li .login{
background: #ffd000;
color: #000;
padding: 5px 15px;
width: fit-content;
}
#nav-items li .login:hover{
background: rgba(255, 208, 0, 0.2);
color: rgb(255, 208, 0);
transition: 0.5s ease-in;
}
#nav-icon{
display: none;
}
.closebtn{
display: none;
}
.download{
display: none;
}
#mobile-nav{
display: none;
}
.displayNone{
display: none;
visibility: hidden;
}
/* ================ slider styles ================= */
#slider-data{
position: absolute;
margin-top: 200px;
margin-left: 5%;
z-index: 1;
}
#slider{
width: fit-content;
text-align: left;
font-family: var(--space);
font-size: 6em;
padding: 10px;
margin: 10px 0px;
font-weight: 700;
background: linear-gradient(45deg, #00b3ff, #e41efa, #ff3650, #f83a00, #ffd000, #27f353, #00ffaa, #4d0049);
background-size: 1000% 1000%;
-webkit-animation: ChangeGradient 7s ease infinite;
-moz-animation: ChangeGradient 7s ease infinite;
-o-animation: ChangeGradient 7s ease infinite;
animation: ChangeGradient 7s ease infinite;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#desc{
width: fit-content;
background: #000;
color: #fff;
padding: 15px 40px;
border-left: 6px solid #ffd000;
text-align: left;
letter-spacing: 0.2em;
font-family: var(--sen);
margin: 0px 10px;
font-weight: 500;
border-radius: 50px;
}
#slider:after{
visibility: visible;
content: '';
background-color: #fff;
display: inline-block;
position: relative;
width: 3px;
height: 1em;
top: 5px;
margin-left: 3px;
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
.floaters{
opacity: 0;
}
</style>
<link rel="preload" href="assets/styles/main.min.css" as="style" media="screen" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="assets/styles/main.min.css" media="screen"></noscript>
<link rel="preload" href="assets/styles/floaters.min.css" as="style" media="screen" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="assets/styles/floaters.min.css" media="screen"></noscript>
<!-- === FontAwesome === -->
<link rel="preload" href="assets/styles/fontawesome.min.css" as="style" media="screen" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="assets/styles/fontawesome.min.css" media="screen"></noscript>
<!-- === google fonts === -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;400;500&family=Quicksand:wght@400;500&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body id="blur" >
<div id="wrapper">
<!-- ========================= Canvas Slider ======================== -->
<div id="canvas">
<!-- ====================== Site Navigation ========================= -->
<div id="navbar">
<div id="logo">
<a href="index.html"><img src="assets/images/mobile yellow.webp" alt=""></a>
</div>
<div id="nav">
<ul id="nav-items">
<li><a href="index.html"> Home <i class="fa fa-trophy"></i></a></li>
<li><a href="#"> Library <i class="fa fa-tv"></i></a></li>
<li><a href="#"> Articles <i class="fa fa-globe"></i></a></li>
<li><a href="#"> About <i class="fa fa-globe"></i></a></li>
<li><a href="#"> Contact Us <i class="fa fa-globe"></i></a></li>
<!-- <li><a class="login" href="#" onclick="toggleBlur()"> <i class="fa fa-user-circle"></i> Get in Touch </a></li> -->
</ul>
</div>
</div>
<div id="mobile-nav">
<div class="logo">
<a href="index.html"><img src="assets/images/mobile yellow.webp" alt=""></a>
</div>
<div id="nav-icon">
<!-- <a href="tel:+91 7607173962" class ="mobile-download"><i class="fa fa-phone"></i> Call</a> -->
<i class="fas fa-bars" style="color: #ffd000; font-size: 20px; margin: 5px 10px;" onclick="openNav()"></i>
<!-- <a href="#" onclick="openNav()"><img src="assets/images/menu.png" alt="mobile menu" style="width: 30px;"></a> -->
</div>
<div id="main-nav" class="sidenav">
<div id="mobile-login">
<img data-src="assets/images/mobile yellow.webp" class="lazyload" alt="user-icon"><a href="index.html" onclick="toggleBlur()"></a>
</div>
<div class="submenu">
<li><a href="index.html">Home <i class="fa fa-home"></i></a></li>
<li><a href="#">Assets <i class="fa fa-download"></i></a></li>
<li><a href="#">Components <i class="fa fa-code"></i></a></li>
<li><a href="#">Resources <i class="fa fa-gift"></i></a></li>
<li><a href="#">Articles <i class="fa fa-book"></i></a></li>
<li><a href="#">Tutorials <i class="fa fa-graduation-cap"></i></a></li>
</div>
<div class="submenu">
<li><a href="#"> About <i class="fa fa-lightbulb"></i></a></li>
<li><a href="#"> Contact Us <i class="fa fa-envelope"></i></a></li>
<li><a href="#"> FAQs <i class="fa fa-question-circle"></i></a></li>
<li><a href="#"> Privacy Policy <i class="fa fa-unlock-alt"></i></a></li>
<!-- <li><a href="#"> Team </a></li> -->
<li>Not a member Yet? <a href="#" class="active"> SIGN UP !</a></li>
</div>
<div class="mobile-nav-bottom">
<div class="social">
<span><a href="#"><i class="fab fa-facebook"></i></a></span>
<span><a href="#"><i class="fab fa-instagram-square"></i></a></span>
<span><a href="#"><i class="fab fa-youtube"></i> </a></span>
<span><a href="#"><i class="fab fa-twitter"></i> </a></span>
<span><a href="#"><i class="fab fa-github"></i> </a></span>
<span><a href="#"><i class="fab fa-gitkraken"></i> </a></span>
<span><a href="#"><i class="fab fa-medium"></i> </a></span>
</div>
<div class="closebtn" onclick="closeNav()"> <i class="fas fa-times-circle"></i> </div>
</div>
</div>
</div>
<div id="slider-data">
<h1 id="desc">\\ a library of</h1>
<h2 id="slider"></h2>
</div>
<!-- Javascript canvas element -->
<canvas height="500"></canvas>
</div>
<!-- ========================= Document Body ========================= -->
<div id="floating-bg">
<div id="floaters">
<img src="assets/images/floaters/052-minimize.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/layout.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/092-perspective.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/012-yin-yang.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/084-hdr.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/044-salt.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/designer.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/075-focus.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/048-pentagon.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/027-puzzle-1.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/023-connections.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/059-select-1.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/081-center-of-gravity.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/083-geometrical-shapes.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/095-character.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/074-select-2.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/066-copyright-1.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/068-more.webp" class="floaters" alt="floaters images">
<img src="assets/images/floaters/062-crop.webp" class="floaters" alt="floaters images">
</div>
<!-- here starts the container -->
<div id="container">
<p class="hero-text para justify">
UiLib is created with an aim to provide a rich library of all kind of UI Assets, Components
for web design, and useful design resources all at one place.
You must be thinking <span class="highlight">"I can use Bootstrap / Materialize"</span> or purchase a UI kit if I need.
Yes, you can do any of them! <br><br>
But, believe me; there's a lot more than that in our library! <br><br>
We will never ask you to pay for any design in the library. We never force you to import the unnecessary rules too by importing whole
stylesheet or any design system.
<br>
<p class="hero-message">You're free to <span class="sky">choose</span>, <span class="pink">customise</span>, and use any <span class="violet">component</span> in the library and represent it as your <span class="orange">own design</span> 🤘🏼 </p>
</p>
<!-- description cards with lottie animation for PC -->
<div class="info-sections" id="pc">
<h2 class="head">Explore Uilib's design library for</h2>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_8msozocb.json"
speed="1.5"
style="background: linear-gradient(315deg,#000000, #00ffaad2);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #00e676;">best design resources and articles</h3>
<p class="section-text">
We organise the best design resources like color palletes, gradients, backgrounds, typography
and all the essential design elements as well as designer - friendly articles that will guide
you towards a particular design approach to make sure only the best design comes to the table.
</p>
</div>
</div>
<div class="section">
<div class="content">
<h3 class="section-head" style="color: #ff5722;">a rich collection of UI Assets</h3>
<p class="section-text">
UiLib provides a rich collection of all UI assets for web development. It could be anything you
need to code the front-end of a website like a Navbar, CTA, Sliders & Carousels, Testimonials,
Text styles, Animations, Forms, and more than the elements usually all design systems packages.
</p>
</div>
<div class="lottiefile">
<lottie-player src="https://assets10.lottiefiles.com/packages/lf20_ZxdiLh.json" speed="1.5" style="background: linear-gradient(-315deg,#000000, #ff3c00);" loop autoplay async></lottie-player>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets4.lottiefiles.com/packages/lf20_eLTtxq.json" speed="1.5" style="background: linear-gradient(-230deg, #099bda, #3a0037);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #00e5ff;">beautifully crafted web components</h3>
<p class="section-text">
We aim to provide each and every component designed by our team of developers for any project in UiLib's
open-source library. So that, all our fellow developers across the globe can use / modify it and help others
too creating a beautiful and accessible web experience for everyone without struggling anymore.
</p>
</div>
</div>
<div class="section">
<div class="content">
<h3 class="section-head" style="color: #e91e63;">best tutorials on front-end topics</h3>
<p class="section-text">
We are also working on creating some specific tutorials on some design and development topics that
aren't covered in most of other mediums in good detail like Canvas, CSS Animations, WebGL, Greensock
Animations, PWA etc. It's taking some time but we're designing it in easiest possible way so that every point can be grasped easily.
</p>
</div>
<div class="lottiefile">
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_eTM2vQ.json" speed="1.5" style="background: linear-gradient(-75deg, #ff3650, #000000);" loop autoplay async></lottie-player>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets2.lottiefiles.com/packages/lf20_xsnsvpbs.json" speed="1.5" style="background: linear-gradient(45deg, #7e008b, #080008);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #c900fc;">free templates and code samples</h3>
<p class="section-text">
Except UI Components and assets for UI design, We are also planning to release some of our best creations
to release for public use. In this segment we will launch some of our best templates like Login Forms,
Website Templates, Dashboard Templates, Landing Page designs and some useful code snippets for public use.
</p>
</div>
</div>
</div>
<!-- description cards with lottie animation for Mobiel Screen -->
<div class="info-sections" id="mobile">
<h2 class="head">Explore Uilib's design library for</h2>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_8msozocb.json"
speed="1.5"
style="background: linear-gradient(315deg,#000000, #00ffaad2);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #00ff84;">best design resources and articles</h3>
<p class="section-text">
We organise the best design resources like color palletes, gradients, backgrounds, typography
and all the essential design elements as well as designer - friendly articles that will guide
you towards a particular design approach to make sure only the best design comes to the table.
</p>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets10.lottiefiles.com/packages/lf20_ZxdiLh.json" speed="1.5" style="background: linear-gradient(-315deg,#000000, #ff3c00);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #ff3c00;">a rich collection of UI Assets</h3>
<p class="section-text">
UiLib provides a rich collection of all UI assets for web development. It could be anything you
need to code the front-end of a website like a Navbar, CTA, Sliders & Carousels, Testimonials,
Text styles, Animations, Forms, and more than the elements usually all design systems packages.
</p>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets4.lottiefiles.com/packages/lf20_eLTtxq.json" speed="1.5" style="background: linear-gradient(-230deg, #099bda, #3a0037);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #00e5ff;">beautifully crafted web components</h3>
<p class="section-text">
We aim to provide each and every component designed by our team of developers for any project in UiLib's
open-source library. So that, all our fellow developers across the globe can use / modify it and help others
too creating a beautiful and accessible web experience for everyone without struggling anymore.
</p>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets9.lottiefiles.com/packages/lf20_eTM2vQ.json" speed="1.5" style="background: linear-gradient(-75deg, #ff3650, #000000);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #ff0055;">best tutorials on front-end topics</h3>
<p class="section-text">
We are also working on creating some specific tutorials on some design and development topics that
aren't covered in most of other mediums in good detail like Canvas, CSS Animations, WebGL, Greensock
Animations, PWA etc. It's taking some time but we're designing it in easiest possible way so that every point can be grasped easily.
</p>
</div>
</div>
<div class="section">
<div class="lottiefile">
<lottie-player src="https://assets2.lottiefiles.com/packages/lf20_xsnsvpbs.json" speed="1.5" style="background: linear-gradient(45deg, #7e008b, #080008);" loop autoplay async></lottie-player>
</div>
<div class="content">
<h3 class="section-head" style="color: #d21fff;">free templates and code samples</h3>
<p class="section-text">
Except UI Components and assets for UI design, We are also planning to release some of our best creations
to release for public use. In this segment we will launch some of our best templates like Login Forms,
Website Templates, Dashboard Templates, Landing Page designs and some useful code snippets for public use.
</p>
</div>
</div>
</div>
<!-- /////////--- cards / scenes / grids AREA ---//////// -->
<div class="attractions">
<!-- stacked section -->
<div class="stacked-section">
<div class="left">
<img data-src="assets/images/girl3d.webp" class="lazyload" id="girl" alt="girl with pencil">
<div id="girlshadow"></div>
</div>
<div class="right">
<h2 class="stackhead">... Jessica will help you get the most of this library</h2>
<div class="stack-container">
<div id="dp-slider">
<div class="dp_item lazyload" style=" background-image: linear-gradient(to top, #26003b, rgba(0, 0, 0, 0.4)), url('assets/images/templates.webp');" data-class="1" data-position="1">
<div class="dp-content">
<h2><br> Website Templates</h2>
<!-- <p> Get premade beautiful templates and contact for customisation </p> -->
</div>
</div>
<div class="dp_item lazyload" style=" background-image: linear-gradient(to top, #ff0037, rgba(0, 0, 0, 0.2)), url('assets/images/snippets.webp');" data-class="2" data-position="2">
<div class="dp-content">
<h2><br> UI Snippets</h2>
<!-- <p> A rich collection of UI snippets like cards, panels, gradients etc.</p> -->
</div>
</div>
<div class="dp_item lazyload" style=" background-image: linear-gradient(#ffa60000, rgb(0, 0, 0)), url('assets/images/articles.webp');" data-class="3" data-position="3">
<div class="dp-content">
<h2><br> Design Articles</h2>
<!-- <p> Beautifully crafted articles to explain the latest design trends </p> -->
</div>
</div>
<div class="dp_item lazyload" style=" background-image: linear-gradient(to top, #00ff62 , rgba(0, 0, 0, 0)), url('assets/images/tutorial.webp');" data-class="4" data-position="4">
<div class="dp-content">
<h2><br> Design Tutorials</h2>
<!-- <p> Tutorial series on various topics like Canvas, WebGL, threejs etc. </p> -->
</div>
</div>
</div>
<span id="dp-next">
<i class="fa fa-arrow-circle-right"></i>
</span>
<span id="dp-prev">
<i class="fa fa-arrow-circle-left"></i>
</span>
<ul id="dp-dots">
<li data-class="1" class="active"></li>
<li data-class="2"></li>
<li data-class="3"></li>
<li data-class="4"></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery-3.5.1.min.js"></script>
<script src="assets/js/canvas.min.js" async></script>
<script src="assets/js/typed.min.js" async></script>
<script src="assets/js/scrollreveal.min.js" async></script>
<script src="assets/js/lazysizes.min.js" async></script>
<script src="assets/js/lottie-player.min.js" async></script>
<script src="assets/js/script.min.js" async></script>
</body>
</html>