-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·747 lines (718 loc) · 33.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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Front10</title>
<link rel="shortcut icon" href="img/favicon-32x32.png">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/agency.min.css" rel="stylesheet">
<style>
#jivosite-adword {
display: none;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-44521541-9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-44521541-9');
</script>
<meta name="og:title" content="Front.10">
<meta name="og:url" content="https://front.com">
<meta name="description" content="React Components.">
<meta name="og:description" content="https://front.com">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<img class="img-fluid logo" src="img/logos/logo.png" alt="Front10">
<!-- <i ></i> -->
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#services">Our Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#video">What we do</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">The Process</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead">
<div class="container">
<div class="intro-text">
<div id="custom-font" class="intro-lead-in">Enterprise Ready</div>
<div class="intro-heading text-uppercase">React Components</div>
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger tell-me-more-btn" href="#services">Tell Me More</a>
</div>
</div>
<div id="particles-container"></div>
</header>
<!-- Services -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Our services</h2>
<h3 class="section-subheading text-muted">Front10 makes scalable frontend development faster.</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-puzzle-piece fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Component libraries</h4>
<p class="text-muted">React custom component libraries creation.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-rocket fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Project acceleration</h4>
<p class="text-muted">Help you to accelerate and scale your frontend projects.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Consulting</h4>
<p class="text-muted">More than 10 years of experience doing frontend development.</p>
</div>
</div>
<div class="row mt-30 text-center">
<div class="col-lg-12 text-center">
<a class="btn btn-primary contact-goto-primary-btn btn-lg js-scroll-trigger" href="#contact">Let's talk
</a>
</div>
</div>
</div>
</section>
<!-- Video Grid -->
<section class="bg-light" id="video">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">What we do</h2>
<h3 class="section-subheading text-muted">One Look Is Worth A Thousand Words.</h3>
</div>
</div>
<div class="video-wrapper">
<iframe width="560" height="315" src="https://www.youtube.com/embed/dCrLwWdju68" frameborder="0" allow="autoplay; encrypted-media"
allowfullscreen></iframe>
</div>
<div class="row mt-30 text-center">
<div class="col-lg-12 text-center">
<a class="btn btn-primary btn-lg js-scroll-trigger contact-goto-primary-btn" href="#contact">Let's talk</a>
</div>
</div>
<!-- <div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal1">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/healtcare-book-thumb.png" alt="">
</a>
<div class="portfolio-caption">
<h4>Healtcare Book</h4>
<p class="text-muted">AngularJs reusable components</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal2">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/anijs-thumb.png" alt="">
</a>
<div class="portfolio-caption">
<h4>AniJs</h4>
<p class="text-muted">Web Design Framework</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#portfolioModal3">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/portfolio/03-thumbnail.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Showroom</h4>
<p class="text-muted">Showing components</p>
</div>
</div>
</div> -->
</div>
</section>
<!-- The process -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">The process</h2>
<h3 class="section-subheading text-muted">Why are we so good?</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/flaticons-process/teamwork.svg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>First...</h4>
<!-- <h4 class="subheading">We hire the bests</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">We hire the bests. Just All Stars</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/flaticons-process/strategy.svg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Then...</h4>
<!-- <h4 class="subheading">We train our team</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">We use our own agile component driven development process</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/flaticons-process/ninja-portrait.svg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Finally...</h4>
<!-- <h4 class="subheading">Transition to Full Service</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">A frontend Ninja is born</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/logos/logo-main-black.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>So...</h4>
<!-- <h4 class="subheading">Phase Two Expansion</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">Fasten seat belts</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image bg-color-primary">
<h4>Be Part
<br>Of Our
<br>Story!</h4>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row mt-30 text-center">
<div class="col-lg-12 text-center">
<a class="btn btn-primary contact-goto-primary-btn btn-lg js-scroll-trigger" href="#contact">Let's talk
</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid -->
<section class="bg-light" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Some of our babies...</h2>
<h3 class="section-subheading text-muted">One Look Is Worth A Thousand Words.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" target="_blank" href="https://explorer.healthyme.tech/">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="https://res.cloudinary.com/dakp804eh/image/upload/v1567435282/marketing/Group_71_2x.png" alt="">
</a>
<div class="portfolio-caption">
<h4>HealthyMe</h4>
<p class="text-muted">ReactJS scalable components library for the Healthcare Industry.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" target="_blank" href="https://widgets.cheapcar.cloud/">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="https://res.cloudinary.com/dakp804eh/image/upload/v1567435890/marketing/Group_72_2x.png" alt="">
</a>
<div class="portfolio-caption">
<h4>CheapCar</h4>
<p class="text-muted">ReactJS reusable components library for the Car Dealers Industry.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" target="_blank" href="http://anijs.github.io">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="https://res.cloudinary.com/dakp804eh/image/upload/v1567436831/marketing/Group_73_2x.png" alt="">
</a>
<div class="portfolio-caption">
<h4>AniJs</h4>
<p class="text-muted">Javascript declarative handling library for animations.</p>
</div>
</div>
</div>
<div class="row mt-30 text-center">
<div class="col-lg-12 text-center">
<a class="btn btn-primary btn-lg js-scroll-trigger contact-goto-primary-btn" href="#contact">Let's talk</a>
</div>
</div>
</div>
</section>
<!-- Team -->
<section id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Our Founders</h2>
<h3 class="section-subheading text-muted">Dariel & Alberto.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 offset-md-2">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/dariel.jpeg" alt="Dariel Vila">
<h4>Dariel Vila</h4>
<p class="text-muted">Co-Founder</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://twitter.com/dariel_noel" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/darielnoel" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/darielnoel/" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/albe.jpeg" alt="Alberto Roman">
<h4>Alberto Roman</h4>
<p class="text-muted">Co-Founder</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://twitter.com/romanvieito" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/romanvieito" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/romanvieito/" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<p class="large text-muted">Transparency, Loyalty, High Performance, Extreme Ownership, Productivity</p>
</div>
</div>
<div class="row mt-30 text-center">
<div class="col-lg-12 text-center">
<a class="btn btn-primary btn-lg js-scroll-trigger contact-goto-primary-btn" href="#contact">Let's talk</a>
</div>
</div>
</div>
</section>
<!-- Clients -->
<section class="bg-light py-5">
<div class="container">
<div class="row">
<div class="col-3">
<a href="https://reactjs.org/" target="_blank">
<img class="img-fluid d-block mx-auto" src="img/tools/Logos-03.png" alt="React">
</a>
</div>
<div class="col-3">
<a href="https://angularjs.org/" target="_blank">
<img class="img-fluid d-block mx-auto" src="img/tools/Logos-01.png" alt="AngularJs">
</a>
</div>
<div class="col-3">
<a href="https://graphql.org/" target="_blank">
<img class="img-fluid d-block mx-auto" src="img/tools/Logos-04.png" alt="GraphQL">
</a>
</div>
<div class="col-3">
<a href="https://storybook.js.org/" target="_blank">
<img class="img-fluid d-block mx-auto" src="img/tools/Logos-02.png" alt="Storybook">
</a>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Book a FREE consultation</h2>
<h3 class="section-subheading text-muted">Our Headquarters in Miami, FL.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form id="contactForm" name="sentMessage" novalidate="novalidate">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input class="form-control" id="name" type="text" placeholder="Your Name *" required="required" data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="email" type="email" placeholder="Your Email *" required="required" data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="form-control" id="phone" type="tel" placeholder="Your Phone">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" id="message" placeholder="Your Message *" required="required" data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button id="sendMessageButton" class="btn btn-primary btn-xl text-uppercase" type="submit">
Book now
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © Front10 - 2019</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/front10hello">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://github.com/front10">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.linkedin.com/company/front10/">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<i class="fa fa-phone"></i>
<a href="tel:+1-305-704-9343">+1 305-704-9343</a>
</li>
<li class="list-inline-item">
<i class="fa fa-envelope"></i>
<a href="mailto:hello@front10.com">
hello@front10.com
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Contact form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom scripts for this template -->
<script src="js/agency.min.js"></script>
<!-- BEGIN JIVOSITE CODE -->
<script type='text/javascript'>
(function () {
var widget_id = 'xxGXv10CdK';
var d = document;
var w = window;
function l() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//code.jivosite.com/script/widget/' + widget_id;
var ss = document.getElementsByTagName('script')[0];
ss.parentNode.insertBefore(s, ss);
}
if (d.readyState == 'complete') {
l();
} else {
if (w.attachEvent) {
w.attachEvent('onload', l);
} else {
w.addEventListener('load', l, false);
}
}
var watch = setInterval(function () {
var iframe = d.querySelector("#jivo-iframe-container iframe");
if (iframe) {
clearInterval(watch);
var _document = iframe.contentDocument;
var style = document.createElement('style');
style.setAttribute('id', 'custom-style')
style.textContent = '' +
'#jivosite-adword{display: none;}' +
'.info_3l{color: #fed136;font-weight: bold;}' +
'.jivo-bottom-left-square{background-color: #fed136!important;}' +
'.td-textarea textarea{border-color: #fed136!important;}' +
'.__agent_3c .message_3f{color:#000}' +
'.__green_1F .content_DP{background-color: rgb(199, 231, 200)!important;}' +
'.__green_1F .pip_1Y{border-right: 5px solid rgb(199, 231, 200);}' +
'.content_3z{background-color: #f2f4fb;}' +
'.header_3g._mobile_2H, .jivoBtn.accept{background-color: #fed136 !important;}' +
'.header_3g._mobile_2H .info_3l{color: #fff !important;}' +
'.pip_2u{border-left: 5px solid #f2f4fb;}';
_document.head.appendChild(style);
}
}, 2000);
})();
</script>
<!-- END JIVOSITE CODE -->
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<script type="text/javascript">
particlesJS("particles-container", {
"particles": {
"number": {
"value": 100,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 2,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 140,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
/* ---- stats.js config ---- */
var count_particles, stats, update;
stats = new Stats;
stats.setMode(0);
stats.domElement.style.position = 'absolute';
stats.domElement.style.left = '0px';
stats.domElement.style.top = '0px';
document.body.appendChild(stats.domElement);
count_particles = document.querySelector('.js-count-particles');
update = function () {
stats.begin();
stats.end();
if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
}
requestAnimationFrame(update);
};
requestAnimationFrame(update);
</script>
</body>
</html>