-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1381 lines (1243 loc) · 84.9 KB
/
index.html
File metadata and controls
1381 lines (1243 loc) · 84.9 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
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
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>CocoRobo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=9, IE=edge" />
<meta name='robots' content='noindex,follow' />
<link rel='stylesheet' id='bootstrap-css' href='assets/css/bootstrap.min.css?ver=4.4.1' type='text/css' media='screen' />
<link href='https://fonts.lug.ustc.edu.cn/css?family=Poppins:400,300,500,600,700&subset=latin,devanagari,latin-ext' rel='stylesheet' type='text/css'>
<link href='https://fonts.lug.ustc.edu.cn/css?family=Playfair+Display:700,900|Fira+Sans:400,400italic' rel='stylesheet' type='text/css'>
<link rel='stylesheet' id='fontawesome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css?ver=4.4.1' type='text/css' media='all' />
<!--<link rel='stylesheet' id='style-css' href='assets/css/new-style.css' type='text/css' media='all' />-->
<link rel="stylesheet" href="assets/css/animate.css" type='text/css' media='all'>
<script type='text/javascript' src='assets/js/jquery.js'></script>
<link type="text/css" rel="stylesheet" id="flexible-switch" href="assets/css/new-style-blue.css" />
<link rel="shortcut icon" href="ico.ico">
<!-- <link rel="stylesheet" href="assets/css/additional/reset.css"> -->
<!--<link rel="stylesheet" href="assets/css/additional/style.css"> -->
<!--<link rel="stylesheet" href="assets/css/carousel.css" rel="stylesheet">-->
<style>
/* For Demo Purposes Only ( You can delete this anytime :-) */
#colour-variations {
padding: 10px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
width: 140px;
position: fixed;
left: 0;
top: 100px;
z-index: 999999;
background: #fff;
/*border-radius: 4px;*/
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
#colour-variations.sleep {
margin-left: -140px;
}
#colour-variations h3 {
text-align: center;;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: #777;
margin: 0 0 10px 0;
padding: 0;;
}
#colour-variations ul,
#colour-variations ul li {
padding: 0;
margin: 0;
}
#colour-variations ul {
float: left;
}
#colour-variations li {
list-style: none;
display: inline;
}
#colour-variations li a {
width: 20px;
height: 20px;
position: relative;
float: left;
margin: 5px;
}
#colour-variations li a[data-theme="../assets/css/new-style-blue"] {
background: #0785f2;
}
#colour-variations li a[data-theme="../assets/css/new-style-green"] {
background: #6e85c1;
}
#colour-variations li a[data-theme="../assets/css/new-style-yellow"] {
background: #9261d4;
}
#colour-variations li a[data-theme="../assets/css/new-style-red"] {
background: #f25454;
}
#colour-variations li a[data-theme="../assets/css/new-style-orange"] {
background: orange;
}
.option-toggle {
position: absolute;
right: 0;
top: 0;
margin-top: 5px;
margin-right: -30px;
width: 30px;
height: 30px;
background: #fff;
text-align: center;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: #0785f2;
cursor: pointer;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
.option-toggle i {
top: 5px;
position: relative;
}
.option-toggle:hover, .option-toggle:focus, .option-toggle:active {
color: #0785f2;
text-decoration: none;
outline: none;
}
.fa-2x {
font-size: 1.5em;
}
.menu-primary-menu-container { font-family: 'Poppins';font-weight: 700; }
.features{padding-top:10px;}
.container-fluid.full-width {
padding-left: 0;
padding-right: 0;
overflow-x: hidden;
}
.row.row-no-gutter {
margin: 0
}
.row.row-no-gutter [class*="col-"] {
padding: 0
}
.img-full-width {
width: 100.5%;
height: auto;
}
.has-inner .row.row-no-gutter {
margin-left: -10px;
margin-right: -10px;
}
.row.row-no-gutter .inner {
padding-left: 10px;
padding-right: 10px;
}
/* Addtion Title Style */
.project-bloks-h1 { background-image: linear-gradient(white, white 0.4em, transparent 0.4em, transparent), linear-gradient(to top, white, white 0.38em, transparent 0.38em, transparent), linear-gradient(to right, rgb(180, 220, 232), rgb(180, 220, 232) 100%, transparent 100%, transparent); }
</style>
</head>
<body>
<div style="padding:40px 100px;text-align:center;font-weight:bold;font-size:20px;background-color:#ffcf53;color:#000;">This landing page was created in September 2016 and is outdated, for our current status, please go to <a href="/assets/joinus.html">/joinus.html</a></div>
<div class="hero-image">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay">
<header id="site-header">
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-size:80px;font-weight: 800;" class="flex fadeInUp animated">MAKE YOUR<br>OWN ROBOTS</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="description-image flex fadeInUp animated">
「打造你自己的机器人」
</p>
<a class="btn btn-cta-primary btn-cta-blue flex" href="#about" role="button">了解更多</a>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<div style="background-color:#f6f8fa;padding-top:40px;" id="about">
<!--<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="http://placehold.it/1440x700" alt="First slide">
</div>
<div class="carousel-item">
<img src="http://placehold.it/1440x700" alt="Second slide">
</div>
<div class="carousel-item">
<img src="http://placehold.it/1440x700" alt="Third slide">
</div>
</div>
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="icon-prev" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="icon-next" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>-->
<section>
<!--<div class="zig-zag container">
<div class="row">
<div style="margin:50px 10px;background:linear-gradient(135deg, #007fff, #0e73d8);padding:0.2em 1.5em 4em 1.5em;border-radius:10px;box-shadow:0px 0px 50px 10px rgba(0,0,0,.1)" class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#fff;" class="flex">我们是谁?</h2>
<p style="color:#fff;" style="font-weight:bold;line-height:2em;color:#444;padding-top:10px;" class="description flex">CocoRobo 是一家专注于 STEAM (科学,技术,工程,艺术,数学)的教育科技(EdTech)公司,与全球前沿科技一起,将技术、思考、设计、游戏融入独一无二的创造中,迎接个人制造时代,
我们不断探索最前沿技术,把最新的理念和技术带到 STEAM 的教育中,把最好的设计,体验带到产品中来。</p>
</div>-->
<div class="zig-zag container">
<div class="row">
<div style="background:url(assets/images/geometry_@2X.png) center repeat;border-radius:20px;border:2px #eaeaea solid;margin:50px 10px 0px 10px;padding:0.2em 1.5em 5em 1.5em;" class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#222;" class="flex">我们是谁?</h2>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#222;font-weight:regular;line-height:2em;color:#222;padding-top:10px;" class="description flex">CocoRobo 是一家专注于<b style="padding:0.1em 0.5em;border-radiu:4px;background-color:rgba(22,104,255,.75);color:#fff;font-weight:normal;">STEAM (科学,技术,工程,艺术,数学)</b> 的教育科技(EdTech)公司,与全球前沿科技一起,将技术、思考、设计、游戏融入独一无二的创造中,迎接个人制造时代,
我们不断探索最前沿技术,把最新的理念和技术带到 STEAM 的教育中,把最好的设计,体验带到产品中来。</p>
</div><!--end title-->
<!--<hr style="margin-top:60px;width:500px;" />-->
<!--<div class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="flex">科技发展时间线</h2>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">大约每隔十五年左右,就会迎来一次技术与社会的碰撞。</p>
</div>-->
<!--<div style="font-size: 62.5%;margin: 0; padding: 0; border: 0;font-size: 100%;font: inherit;vertical-align: baseline;display: block;line-height: 1;font-family: "Fira Sans", sans-serif; color: #383838;" class="cd-horizontal-timeline">
<div class="timeline">
<div class="events-wrapper">
<div class="events">
<ol style="list-style-type: none;">
<li><a href="#0" data-date="01/01/1980" class="selected">1985</a></li>
<li><a href="#0" data-date="01/01/1985">1995</a></li>
<li><a href="#0" data-date="01/01/2004">2005</a></li>
<li><a href="#0" data-date="01/01/2007">2015</a></li>
<li><a href="#0" data-date="01/01/2010">2016</a></li>
<li><a href="#0" data-date="01/07/2016">21 世纪</a></li>
</ol>
<span class="filling-line" aria-hidden="true"></span>
</div>
</div>
<ul class="cd-timeline-navigation">
<li><a href="#0" class="prev inactive">Prev</a></li>
<li><a href="#0" class="next">Next</a></li>
</ul>
</div>
<div class="events-content">
<ol style="list-style-type: none;">
<li class="selected" data-date="01/01/1980">
<h2>Personal Computer</h2>
<em style="padding-top:20px;">80s, 20 Century</em>
<p id="cd-p-smaller">
个人电脑的诞生,使它成为普通人能用的产品
</p>
</li>
<li data-date="01/01/1985">
<h2>Birth of the Internet</h2>
<em style="padding-top:20px;">90s, 20 Century</em>
<p id="cd-p-smaller">
互联网的出现,让人们与世界连结起来
</p>
</li>
<li data-date="01/01/2004">
<h2>3D Printing</h2>
<em style="padding-top:20px;">21 Century</em>
<p id="cd-p-smaller">
第一款开源桌面 3D 打印机 — RepRap
</p>
</li>
<li data-date="01/01/2007">
<h2>Augemented Reality</h2>
<em style="padding-top:20px;">Year 2015</em>
<p id="cd-p-smaller">
微软公司推出了跨时代的增强现实产品 — Hololens
</p>
</li>
<li data-date="01/01/2010">
<h2>Virtual Reality</h2>
<em style="padding-top:20px;">Year 2016</em>
<p id="cd-p-smaller">
将VR和AR作为他们十年计划中的另一个重头戏
</p>
</li>
<li data-date="01/07/2016">
<h2>Anything is Possible</h2>
<em style="padding-top:20px;">Modern Society</em>
<p id="cd-p-smaller">
随着人工智能、机器人、增强现实、3D打印等新技术的发展,新的技术和设备正在代替人类解决越来越多难题,完成更多专业性的精细工作,改变了我们与世界的交互方式。生产环节中按部就班和机械模仿将逐渐被智能机器所取代,而无法被取代的将是人区别于机器独有的创造力和对新知的探求利用。
</p>
</li>
</ol>
</div>-->
</div>
</section><!--end info-->
<!--<hr style="margin-top:0px;width:500px;" />-->
<!-- <div style="margin-top:100px;margin-bottom:100px;" class="title">
<img src="assets/images/question_1.jpg" />
<h2 style="font-size:60px;" class="flex">STATUS QUO</h2>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">当我们的孩子踏入社会时,70%的工作现在还未被创造出来,
那么如何应对这么一个快速变化的时代?</p>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">↓</p>
</div>-->
<div>
<div id="home">
<!--<div style="padding-top:50px;" class="hero-overlay-1">
<header>
<div class="row">
</div>
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1.5em;" class="flex fadeInUp animated">寓教于乐</h1>
<p style="line-height:2em;" class="description-image flex fadeInUp animated">
我们通过融合 3D 打印技术,模块化的硬件/软件设计,增强现实技术,<br/>来打造一系列多元化,创新型,寓教于乐的套件产品。
</p>
</div>
</div>
</header>
</div>-->
<!--<div style="margin-top:20px;margin-bottom:80px;">
<div style="background-color:#fde13f;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div style="padding-top:30px;padding-left:30px;padding-bottom:50px;" class="col-xs-12 col-sm-6">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1.5em;color:#333;" class="flex fadeInUp animated">寓教于乐</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:2em;color:#333;width:75%;" class="description-image flex fadeInUp animated">
我们通过融合 3D 打印技术,模块化的硬件/软件设计,增强现实技术,来打造一系列多元化,创新型,寓教于乐的套件产品。
</p>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<img src="assets/images/edutainment.jpg" class="img-full-width" alt="" />
<div style="margin-top:100px;margin-bottom:100px;" class="title">
<img src="assets/images/question_1.jpg" />
<h2 style="font-size:60px;" class="flex">STATUS QUO</h2>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">当我们的孩子踏入社会时,70%的工作现在还未被创造出来,
那么如何应对这么一个快速变化的时代?</p>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">↓</p>
</div>
</div>
</div>
</div>-->
<!--<div style="background-color:#f7f9fb;padding-bottom:100px;" class="hero-image-2">
<div id="home">
<div class="hero-overlay-2">
<header>
<div class="row">
</div>
<div class="main-message-center">
<div class="container">
<h1 style="color:#222;font-weight: 800;" class="flex fadeInUp animated">寓教于乐</h1>
<h3 style="font-size:2.25em;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#222;line-height:1.875em;" class="description-image flex fadeInUp animated">
通过融合 3D 打印技术,模块化的硬件/软件设计,和以增强现实技术为代表的人机交互,来打造一系列多元化,创新型,寓教于乐的套件产品。
</h3>
</div>
</div>
</div>
</header>
</div>
</div>
</div>-->
<!--<div style="background-color:#fff;padding-top:75px;padding-bottom:50px;" class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="flex">动手创造!</h2>
<p class="description flex ">采用 3D 打印技术获得机械零件,把需要用到的模块安装进去,用你喜欢的任何方式进行编程操作(例如 Scratch,Arduino,JavaScript 等),享受玩的乐趣!</p>
</div>
<div id="howitworks" style="padding-bottom:100px;background-color:#fff;" class="container-fluid full-width">
<div class="row row-no-gutter">
<div class="col-xs-12 col-sm-12">
<img src="assets/images/howitworks.jpg" class="img-full-width" alt="" />
</div>
</div>
</div> -->
<style>
.module_formula {font-weight:500;padding:5px 15px;border-radius:4px;border:1px #1e90ff solid;color:#fff;font-size:16px;margin-right:10px;background-color:#1e90ff;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;}
</style>
<div style="padding-top:80px;padding-bottom:70px;background-color:#fff;">
<div class="title">
<h2 style="20px;line-height:1.5em;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="flex">打造属于你自己的机器人!</h2>
<div style="padding-top:15px;" class="description flex ">
<p>
<b class="module_formula">3D 打印</b>+
<b class="module_formula">模块组装</b>+
<b class="module_formula">编程控制</b>+
<b class="module_formula">App 互动</b>
</p>
</div>
</div>
<div style="padding-top:20px;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div style="padding-top:20px;" class="col-xs-12 col-sm-3">
<img src="assets/images/hiw_1.png" class="img-full-width" alt="" />
</div>
<div style="padding-top:20px;" class="col-xs-12 col-sm-3">
<img src="assets/images/hiw_2.png" class="img-full-width" alt="" />
</div>
<div style="padding-top:20px;" class="col-xs-12 col-sm-3">
<img src="assets/images/hiw_3.png" class="img-full-width" alt="" />
</div>
<div style="padding-top:20px;" class="col-xs-12 col-sm-3">
<img src="assets/images/hiw_4.png" class="img-full-width" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <section style="margin-bottom:100px;margin-top:-20px;" id="about" class="marketing-action">
<div class="overlay">
<div class="text">
<h2 style="color:#fff;line-height:2em;" class="flex ">大约每隔十五年左右,就会迎来一次技术与社会的碰撞</h2>
<!--<p style="padding-bottom:25px;" class="description-image flex ">
Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nullam id dolor id nibh ultricies vehicula ut id elit.
</p>
<a href="#home" class="btn btn-cta-primary btn-cta-buy" role="button">Go to Top</a>
</div>
</div>
</section>-->
<div id="products">
<div class="hero-image-a1">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-a1">
<header>
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;line-height:1.5em;" class="flex fadeInUp animated">百变模块</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
我们推出的一系列硬件模块(CocoMod),从负责核心的主控模块,到各种各样的传感器模块,输入输出模块等等。用户利用这些模块,通过不同的组合,可以实现各种功能的产品,从机器人到智能家庭硬件。
</p>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<section class="container">
<div style="margin-bottom:60px;" class="row">
<div style="margin-top:75px;" id="cocomod" class="title">
<h2 style="padding-bottom:20px;" class="flex ">CocoMod</h2>
<!--<p class="description flex ">我们推出的一系列硬件模块(Coco Mod),从负责核心的主控模块,到各种各样的传感器模块,输入输出模块等等。用户利用这些模块,通过不同的组合,可以实现各种功能的产品,从机器人到智能家庭硬件。</p>-->
</div><!--end title-->
<div>
<div class="row">
<div class="col-md-4 caption flex animated" data-wow-delay="0.2s">
<a href="#howitworks" title=""><img src='assets/images/module_1.png' class="serv" alt="Cursuri" /></a>
<h4 style="padding-top:50px;">主控模块</h4>
<ul>
<li>Wi-Fi/Bluetooth Ready</li>
<li>GPIO/ADC/PWM</li>
<li>SPI/I2C/UART</li>
</ul>
</div><!--end col-sm-6-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.2s">
<a href="#howitworks" title=""><img src='assets/images/module_2.png' class="serv" alt="Cursuri" /></a>
<h4 style="padding-top:50px;">输入类功能模块</h4>
<ul>
<li>按钮模块,旋钮模块,触控板模块,</li>
<li>三轴传感模块,音频识别模块,</li>
<li>摄像头传感模块,移动通信模块,</li>
<li>Makey Makey</li>
</ul>
</div><!--end col-sm-6-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.3s">
<a href="#howitworks" title=""><img src='assets/images/module_3.png' class="serv" alt="Cursuri" /></a>
<h4 style="padding-top:50px;">输出类功能模块</h4>
<ul>
<li>显示模块,电池模块,</li>
<li>音乐播放模块,电机控制器,</li>
<li>伺服控制器</li>
</ul>
</div><!--end col-sm-6-->
</div>
</div><!--end col-md-6-->
</div><!--end row-->
</section>
<!--<div id="howitworks" style="margin-bottom:100px;background-color:#fff;" class="container-fluid full-width">
<div class="row row-no-gutter">
<div class="col-xs-12 col-sm-12">
<img src="assets/images/howitworks.jpg" class="img-full-width" alt="" />
</div>
</div>
</div>-->
<div>
<iframe width="100%" height="640px" src="cocomods/index.html" frameborder="0"></iframe>
</div>
<!--<div class="hero-image-3">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-3">
<header>
<div class="row">
</div>
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#333;font-weight: 800;" class="flex fadeInUp animated">丰富的组合</h1>
<p style="font-family:'Poppins',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#333;line-height:1.75em;" class="description-image flex fadeInUp animated">
通过融合3D打印技术,模块化的硬件/软件设计,增强现实技术,<br/>来打造一系列多元化,创新型,寓教于乐的套件产品。
</p>
</div>
</div>
</header>
</div>
</div>
</div>-->
<div class="hero-image-5">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-5">
<header>
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;line-height:1.5em;" class="flex fadeInUp animated">打印一切!</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
3D 打印技术经过过去二十多年的发展,已经接近走到成熟期。我们认为,3D 打印技术在教育领域已经足够可用。如火如荼般发展的创客运动和创客空间,让3D打印不再是遥不可及。并且我们有理由相信,随着技术的发展,3D 打印质量会越来越好,成本越来越低。
</p>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<section id="coco3dp" class="container">
<div class="row">
<div id="coco3dp" class="title">
<h2 class="flex ">Coco3DP</h2>
<!--<div style="width:80%;margin:3em 10% 0em 10%;background:linear-gradient(135deg, #FFFFFF, #FFFFFF);padding:1em 1.5em 1em 1.5em;border-radius:10px;" class="title">
<h2 style="font-size:35px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;color:#222;line-height:1.5em;" class="flex">「丰富的 3D 模型库,打印一切!」</h2>
</div>-->
<!--<p class="description flex ">3D 打印技术经过过去二十多年的发展,已经接近走到成熟期。我们认为,3D 打印技术在教育领域已经足够可用。如火如荼般发展的创客运动和创客空间,让3D打印不再是遥不可及。并且我们有理由相信,随着技术的发展,3D 打印质量会越来越好,成本越来越低。</p>-->
</div><!--end title-->
<!--<div class="col-md-6">
<div class="row">
<div class="col-sm-6 caption flex animated" data-wow-delay="0.1s">
<a href="#" title=""><img src='assets/images/3dp_1.png' class="serv" alt="Cursuri" /></a>
<a href="#" title=""><h4 style="padding-top:50px;">Coco RoboCar</h4></a>
<p>WiFi / BT ready, GPIO /ADC / PWM, SPI/I2C/UART 以及更多</p>
<a href="#" title="See more" class="more">See more <i class="fa fa-angle-right"></i></a>
</div>
<div class="col-sm-6 caption flex animated" data-wow-delay="0.2s">
<a href="#" title=""><img src='assets/images/3dp_2.png' class="serv" alt="Cursuri" /></a>
<h4 style="padding-top:50px;">Coco Drone</h4>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-sm-6 caption flex animated" data-wow-delay="0.3s">
<a href="#" title=""><img src='assets/images/3dp_5.png' class="serv" alt="Cursuri" /></a>
<a href="#" title=""><h4 style="padding-top:50px;">Coco Doggy</h4></a>
</div>
<div class="col-sm-6 caption flex animated" data-wow-delay="0.4s">
<a href="#" title=""><img src='assets/images/3dp_4.png' class="serv" alt="Cursuri" /></a>
<a href="#" title=""><h4 style="padding-top:50px;">Coco RoboArm</h4></a>
</div>
</div>
</div>-->
</div><!--end row-->
</section>
<div style="background-color:#fcfcfc;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div style="padding-top:0px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_drone.png" class="img-full-width" alt="" />
<!--<div>
<h4 style="padding-top:50px;">输出类功能模块</h4>
<ul>
<li>Display, Battery,</li>
<li>MP3 Player, Motor Controller</li>
<li>Servo controller</li>
</ul>
</div>-->
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_doggy.png" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_piano_mod.png" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="padding-top:0px;padding-bottom:50px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_arm.png" class="img-full-width" alt="" />
</div>
<div style="padding-top:0px;padding-bottom:50px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_droid.png" class="img-full-width" alt="" />
</div>
<div style="padding-top:0px;padding-bottom:50px;" class="col-xs-12 col-sm-4">
<img src="assets/images/3dp_more.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
</div>
<div style="padding-bottom:75px;width:100%;" class="container">
<p style="text-align:center;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:2em;color:#333;width:100%;font-weight:bold;" class="description-image flex fadeInUp animated">
<!--<b unselectable="on" class="bold_dots">·</b>-->免费提供所有的 3D 文件,让用户可以自行修改,打印,组装;<br/>
<!--<b unselectable="on" class="bold_dots">·</b>-->互助的 3D 文件分享社区,加速你的设计;<br/>
<!--<b unselectable="on" class="bold_dots">·</b>-->即将推出质优价廉的 3D 打印服务,敬请期待!
</p>
</div>
</div>
<div class="hero-image-a3">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-a3">
<header>
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;" class="flex fadeInUp animated">创意套件</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
精致,轻量级,模块化的STEAM电子套件。我们希望科学的设计与搭配,激发用户无限的创造潜能。启发任何对机器人感兴趣的知识青年一起创造科学教育的未来。
</p>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<div style="margin-top:100px;padding-bottom:50px;" class="title">
<h2 class="flex">CocoKits</h2>
<!--<p class="description flex ">精致,轻量级,模块化的STEAM电子套件。我们希望科学的设计与搭配,激发用户无限的创造潜能。启发任何对机器人感兴趣的知识青年一起创造科学教育的未来。-->
</div><!--end title-->
<div style="padding-bottom:100px;background-color:#fff;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div style="padding-top:0px;" class="col-xs-12 col-sm-8">
<img src="assets/images/packn_robot.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-4">
<div style="width:100%;" class="container">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight:bolder;line-height:1.5em;color:#333;font-size:2.5em;" class="flex fadeInUp animated project-bloks-h1">机器人套件</h2>
<h4 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1em;color:#333;" class="flex fadeInUp animated">ROBOT KIT</h4>
<p style="margin-top:-10px;margin-bottom:10px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.8em;color:#333;width:90%;font-weight:500;font-size:1.2em;" class="description-image flex fadeInUp animated">
在未来,机器人就如同现在的手机应用一样无处不在,快来制作你的大白吧!
</p>
<div style="width:90%;background-color:rgba(0,0,0,.05);border-radius:4px;padding:20px 20px;font-size:1em;color:#222;line-height:1.8em;font-weight:normal;">
<!--<b unselectable="on" class="bold_dots">·</b>-->机器人套件,提供了双足/四足/无人机/机械臂/小车五大类机器人的模型,硬件,软件,算法。让你从零起步,进入机器人的世界;机器人教育融合了编程、逻辑思维、情境设计、跨学科知识,来全方位的锻炼学生的动手、动脑能力,以及团队协作精神。
</div>
<div style="padding-top:40px;font-size:1em;color:#222;font-weight:bold;">
<b style="padding:2px 10px;border:1px #111 solid;border-radius:4px;">套件包含模块</b>
<div style="width:90%;line-height:1.75em;padding-top:20px;">
<!--<b unselectable="on" class="bold_dots">·</b>-->主控,电机驱动器,舵机驱动器,舵机,电机,3D机械文件
</div>
</div>
</div>
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-8">
<img src="assets/images/packn_led.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="" class="col-xs-12 col-sm-4">
<div style="width:100%;" class="container">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight:bolder;line-height:1.5em;color:#333;font-size:2.5em;" class="flex fadeInUp animated project-bloks-h1">灯光套件</h2>
<h4 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1em;color:#333;" class="flex fadeInUp animated">LIGHTING KIT</h4>
<p style="margin-top:-10px;margin-bottom:10px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.8em;color:#333;width:90%;font-weight:500;font-size:1.2em;" class="description-image flex fadeInUp animated">
探索光与影的美妙,人人都是灯光大师
</p>
<div style="width:90%;background-color:rgba(0,0,0,.05);border-radius:4px;padding:20px 20px;font-size:1em;color:#222;line-height:1.8em;font-weight:normal;">
<!--<b unselectable="on" class="bold_dots">·</b>-->灯光套件,制作属于自己的灯光应用;内置的数十种灯效,配合APP使用,方便你轻松调用为创作增加一份精彩;学习编程技术,制作酷炫好玩的光影效果。
</div>
<div style="padding-top:40px;font-size:1em;color:#222;font-weight:bold;">
<b style="padding:2px 10px;border:1px #111 solid;border-radius:4px;">套件包含模块</b>
<div style="width:90%;line-height:1.75em;padding-top:20px;">
<!--<b unselectable="on" class="bold_dots">·</b>-->主控,灯带,灯柱,灯环,灯点阵屏
</div>
</div>
</div>
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-8">
<img src="assets/images/packn_music.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="" class="col-xs-12 col-sm-4">
<div style="width:100%;" class="container">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight:bolder;line-height:1.5em;color:#333;font-size:2.5em;" class="flex fadeInUp animated project-bloks-h1">音乐套件</h2>
<h4 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1em;color:#333;" class="flex fadeInUp animated">MUSIC KIT</h4>
<p style="margin-top:-10px;margin-bottom:10px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.8em;color:#333;width:90%;font-weight:500;font-size:1.2em;" class="description-image flex fadeInUp animated">
玩音乐不需要乐器,自家厨房就是你的车库乐队,动手来造吧
</p>
<div style="width:90%;background-color:rgba(0,0,0,.05);border-radius:4px;padding:20px 20px;font-size:1em;color:#222;line-height:1.8em;font-weight:normal;">
<!--<b unselectable="on" class="bold_dots">·</b>-->音乐套件,把所有的导电物体(水果,导电金属,人体等)变成触发源,用户通过与之接触,来触发自定义的声音;我们还提供一些列传感器附件,来响应更多种有趣的触发事件:触碰,按压,摇动,甚至包括用户自己定义的方式;学习编程技术,动手创造好玩有趣的音乐
</div>
<div style="padding-top:40px;font-size:1em;color:#222;font-weight:bold;">
<b style="padding:2px 10px;border:1px #111 solid;border-radius:4px;">套件包含模块</b>
<div style="width:90%;line-height:1.75em;padding-top:20px;">
<!--<b unselectable="on" class="bold_dots">·</b>-->主控,按钮,压力传感器,触摸传感器,三轴加速器等
</div>
</div>
</div>
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-8">
<img src="assets/images/packn_iot.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="" class="col-xs-12 col-sm-4">
<div style="width:100%;" class="container">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight:bolder;line-height:1.5em;color:#333;font-size:2.5em;" class="flex fadeInUp animated project-bloks-h1">物联网套件</h2>
<h4 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1em;color:#333;" class="flex fadeInUp animated">INTERNET OF THINGS KIT</h4>
<p style="margin-top:-10px;margin-bottom:10px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.8em;color:#333;width:90%;font-weight:500;font-size:1.2em;" class="description-image flex fadeInUp animated">
快来改造家里的物品吧,<br/>赋予它们神奇的能力。
</p>
<div style="width:90%;background-color:rgba(0,0,0,.05);border-radius:4px;padding:20px 20px;font-size:1em;color:#222;line-height:1.8em;font-weight:normal;">
<!--<b unselectable="on" class="bold_dots">·</b>-->学习基本的通信原理,电子电路知识,编程技术;改造传统设备,对其进行远程管理和控制;利用物联网套件,解决生活中的实际问题
</div>
<div style="padding-top:40px;font-size:1em;color:#222;font-weight:bold;">
<b style="padding:2px 10px;border:1px #111 solid;border-radius:4px;">套件包含模块</b>
<div style="width:90%;line-height:1.75em;padding-top:20px;">
<!--<b unselectable="on" class="bold_dots">·</b>-->温度,光照强度,音量,湿度传感器,空气质量传感器,显示屏,摄像头
</div>
</div>
</div>
</div>
<!-- close .col -->
<div style="padding-top:0px;" class="col-xs-12 col-sm-8">
<img src="assets/images/packn_3dp.jpg" class="img-full-width" alt="" />
</div>
<!-- close .col -->
<div style="" class="col-xs-12 col-sm-4">
<div style="width:100%;" class="container">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight:bolder;line-height:1.5em;color:#333;font-size:2.5em;" class="flex fadeInUp animated project-bloks-h1">3D 打印套件</h2>
<h4 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;width:75%;font-weight: 800;line-height:1em;color:#333;" class="flex fadeInUp animated">3D PRINTING KIT</h4>
<p style="margin-top:-10px;margin-bottom:10px;font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.8em;color:#333;width:90%;font-weight:500;font-size:1.2em;" class="description-image flex fadeInUp animated">
所想即所得,想体验一下造物者的感觉吗?
</p>
<div style="width:90%;background-color:rgba(0,0,0,.05);border-radius:4px;padding:20px 20px;font-size:1em;color:#222;line-height:1.8em;font-weight:normal;">
<!--<b unselectable="on" class="bold_dots">·</b>-->学习3D建模和打印技术;制作个性化的产品
</div>
<div style="padding-top:40px;font-size:1em;color:#222;font-weight:bold;">
<b style="padding:2px 10px;border:1px #111 solid;border-radius:4px;">套件包含模块</b>
<div style="width:90%;line-height:1.75em;padding-top:20px;">
<!--<b unselectable="on" class="bold_dots">·</b>-->3D 打印机,打印线材
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section id="applications">
<div class="hero-image-a4">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-a4">
<header>
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;" class="flex fadeInUp animated">多彩应用</h1>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
结合我们的套件产品,我们开发了一系列有趣的应用;<br/>在趣味的应用中将你的想法,与 CocoRobo 一起学习编程、操控
</p>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<div class="container">
<div style="margin-top:100px;padding-bottom:0px;" class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="flex">CocoApps</h2>
<p style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="description flex ">我们对多个平台进行了 SDK 匹配,选择你最熟悉或喜欢的平台进行创作</p>
</div><!--end title-->
<!--<div style="padding-bottom:25px;" class="title"><h4 style="border:2px #1e90ff solid;font-weight:bolder;color:#1e90ff;padding:1em;" class="flex">桌面版应用</h4></div>-->
<div style="padding-top:50px;padding-bottom:100px;text-align:center;"><img src="assets/images/supported_platform.jpg"></div>
<div class="row">
<div class="col-md-4 caption flex animated" data-wow-delay="0.1s">
<img src="assets/images/app_duino.png" />
<h3 style="padding-top:20px;">Cocoduino</h3>
<p>这是一款桌面版的APP,兼容当今世界最流行的Arduino开发环境,丰富的资源和技术支持,适合14岁以上儿童。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.3s">
<img src="assets/images/app_scratch.png" />
<h3 style="padding-top:20px;">Coco Scratch</h3>
<p>一款图形化编程平台,敲击一下鼠标便能完成一个简单的项目,适合8-16岁儿童。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.5s">
<img src="assets/images/app_motion.png" />
<h3 style="padding-top:20px;">Coco Leap Motion</h3>
<p>这是一款桌面版的APP,通过它来实现Leap motion对机器人的控制,完成更多有趣好玩的操作。</p>
</div><!--end col-md-4-->
</div><!--end row-->
<!--<div style="padding-bottom:25px;" class="title"><h4 style="border:2px #1e90ff solid;font-weight:bolder;color:#1e90ff;padding:1em;" class="flex">移动版应用</h4></div>-->
<div class="row">
<div class="col-md-4 caption flex animated" data-wow-delay="0.1s">
<img src="assets/images/app_playground.png" />
<h3 style="padding-top:20px;">Coco Playground</h3>
<p>这是一款结合AR技术的趣味性编程手机APP,借助实体的积木以及屏幕上的动画,引导小朋友去学习和理解编程,适合6-10岁儿童。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.3s">
<img src="assets/images/app_go_motor.png" />
<h3 style="padding-top:20px;">Coco Go</h3>
<p>这是一款用于控制机器人运动的手机APP,支持多达4路电机和12路舵机的控制,同时可以通过预编程的方式为每款机器人设定各自的运动学算法。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.5s">
<img src="assets/images/app_battle.png" />
<h3 style="padding-top:20px;">Coco Battle</h3>
<p>这是一款结合AR技术的趣味性游戏APP,支持多达3位用户,6台机器人的对战平台,让小朋友可以玩中学。</p>
</div><!--end col-md-4-->
</div><!--end row-->
<div class="row">
<div class="col-md-4 caption flex animated" data-wow-delay="0.1s">
<img src="assets/images/app_music.png" />
<h3 style="padding-top:20px;">Coco Music</h3>
<p>这是一款跟音乐套件配合使用的手机APP,内置多款电子乐器,如钢琴,吉他,架子鼓等。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.3s">
<img src="assets/images/app_blink.png" />
<h3 style="padding-top:20px;">Coco Blink</h3>
<p>这是一款跟灯光套件配合使用的手机APP,可以用它来控制LED点阵屏的亮度,颜色,图案,以及进行趣味性互动。</p>
</div><!--end col-md-4-->
<div class="col-md-4 caption flex animated" data-wow-delay="0.5s">
<img src="assets/images/app_hub.png" />
<h3 style="padding-top:20px;">Coco Hub</h3>
<p>这是一款跟物联网套件配合使用的手机APP,用它可以实时汇总和监测传感器上的信息,并且可以用过编程的方式实现多个传感器节点之前的互动。</p>
</div><!--end col-md-4-->
</div>
</div>
</div><!--end container-->
<!--<div style="margin-top:20px;" class="title">
<h2 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;" class="flex">How it Works?</h2>
<p class="description flex ">采用3D打印技术获得机械零件,把需要用到的模块安装进去,用你喜欢的任何方式进行编程操作(例如 Scratch,Arduino,JavaScript 等),最后,请享受玩的乐趣吧!</p>
</div>-->
</section>
<div id="features">
<!--<div class="hero-image-a6">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-a6">
<header>
<div class="row">
</div>
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;" class="flex fadeInUp animated">特色</h1>
<p style="line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
你买的并不是一款普通的电子类产品,你买的是未来。
</p>
</div>
</div>
</header>
</div>
</div>
</div>-->
<div style="margin-bottom:0px;">
<div style="background-color:#fff;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<!-- close .col -->
<div class="col-xs-12 col-sm-6">
<video style="right:10%;" poster="assets/plug_play_pos.jpg" class="img-full-width" autoplay loop>
<source src="assets/plug_play.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!--<div style="margin-top:100px;margin-bottom:100px;" class="title">
<img src="assets/images/question_1.jpg" />
<h2 style="font-size:60px;" class="flex">STATUS QUO</h2>
<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">当我们的孩子踏入社会时,70%的工作现在还未被创造出来,
那么如何应对这么一个快速变化的时代?</p>-->
<!--<p style="line-height:2em;color:#444;padding-top:20px;" class="description flex ">↓</p>-->
</div><!--end title-->
<div class="col-xs-12 col-sm-6">
<img src="assets/images/feature_combination.jpg" class="img-full-width" alt="" />
</div>
</div>
<!-- close .col -->
</div>
</div>
<div style="margin-top:-10px;margin-bottom:0px;">
<div style="background-color:#fff;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div class="col-xs-12 col-sm-6">
<img src="assets/images/feature_ardemo.jpg" class="img-full-width" alt="" />
</div>
<div class="col-xs-12 col-sm-6">
<img src="assets/images/feature_edutainment.jpg" class="img-full-width" alt="" />
</div>
</div>
<!-- close .col -->
</div>
</div>
<div style="margin-top:0px;margin-bottom:0px;">
<div style="background-color:#fff;" class="container-fluid full-width">
<div id="coco3dp" class="row row-no-gutter">
<div class="col-xs-12 col-sm-6">
<img src="assets/images/feature_gadgets.jpg" class="img-full-width" alt="" />
</div>
<div class="col-xs-12 col-sm-6">
<img src="assets/images/feature_cloud.png" class="img-full-width" alt="" />
</div>
</div>
<!-- close .col -->
</div>
</div>
</div>
<section style="margin-top:-8px;" id="education">
<div class="hero-image-a5">
<div id="home">
<div style="padding-top:50px;" class="hero-overlay-a5">
<header>
<div class="row">
</div><!--end row-->
<div class="main-message-left">
<div class="container">
<h1 style="font-family:'Poppins','PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;font-weight: 800;" class="flex fadeInUp animated">一站式 STEAM 教育</h1>
<p style="line-height:1.75em;width:70%;" class="description-image flex fadeInUp animated">
我们提供一站式的 STEAM 教育解决方案,包括课程开发、课程传授、实验室设计、套件提供、知识内容提供等。我们坚信,科学教育在教会学生科学知识的同时,能够最好地鼓励学生的好奇心,激发探索欲望,培养良好的学习习惯。
</p>
</div><!--end container-->
</div><!--end main-message-->
</header>
</div><!--end hero-overlay-->
</div><!--end acasa-->
</div><!--end hero-image-->
<div style="margin" class="zig-zag container">
<div class="row">
<div class="title">
<h2 class="flex">Coco Education</h2>
<!--<p style="margin-bottom:-100px;line-height:2em;" class="description flex ">我们提供一站式的STEAM教育解决方案,包括课程开发、课程传授、实验室设计、套件提供、知识内容提供等。我们坚信,科学教育在教会学生科学知识的同时,能够最好地鼓励学生的好奇心,激发探索欲望,培养良好的学习习惯。</p>-->
</div><!--end title-->