-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
507 lines (458 loc) · 19.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="The admin of DRAGON.COMPUTER">
<title>DRAGON.COMPUTER - Computer-aided life</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- videojs -->
<link href="http://vjs.zencdn.net/4.12/video-js.css" rel="stylesheet">
<script src="http://vjs.zencdn.net/4.12/video.js"></script>
<style type="text/css">
.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level { background-color: #a00012 }
.vjs-default-skin .vjs-control-bar,
.vjs-default-skin .vjs-big-play-button { background: rgba(102,0,0,0.7) }
.vjs-default-skin .vjs-slider { background: rgba(102,0,0,0.2333333333333333) }
</style>
<meta name="theme-color" content="#000000">
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<i class="fa"></i> <span class="light">Dragon</span>.Computer
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#dragonfire">Dragonfire</a>
</li>
<li>
<a class="page-scroll" href="#community">Community</a>
</li>
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">The Armor <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/#">The Helmet</a></li>
<li class="divider"></li>
<li><a href="#">The Cuirass</a></li>
<li><a href="#">The Pauldron</a></li>
<li><a href="#">The Arm</a></li>
<li><a href="#">The Gauntlet</a></li>
<li><a href="#">The Tassets</a></li>
<li><a href="#">The Leg</a></li>
<li><a href="#">The Boot</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading">Dragon Helmet</h1>
<p class="intro-text">"augment the reality, enhance your capability"</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1" id="divcolvideojs">
<h2>The Project</h2>
<iframe src="https://myhub.autodesk360.com/ue2b29b4b/shares/public/SH7f1edQT22b515c761e955e4c6ca697651f?mode=embed" width="800" height="600" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" frameborder="0"></iframe>
<script type="text/javascript">
// Once the video is ready
videojs("example_video_1").ready(function(){
var myPlayer = this; // Store the video object
var aspectRatio = 9/16; // Make up an aspect ratio
function resizeVideoJS(){
// Get the parent element's actual width
var width = document.getElementById("divcolvideojs").offsetWidth;
// Set width to fill parent element, Set height
myPlayer.width(width).height( width * aspectRatio );
}
resizeVideoJS(); // Initialize the function
window.onresize = resizeVideoJS; // Call the function on resize
});
</script>
<!-- videojs -->
<p>
<p class="long-text">We are on a mission to deliver a high-tech helmet which will be a distruptive product in the market. This helmet will be used by the motorcycle riders at the first, but by the time, the amount of use case scenarios will increase and it will eventually become a part of everybody's daily life. This project is basically the next phase of <a href="https://en.wikipedia.org/wiki/The_Mobile_Revolution">The Mobile Revolution</a> after the cell phones.</p>
<p class="long-text">The <a href="https://en.wikipedia.org/wiki/Artificial_intelligence">AI</a> and the <a href="https://en.wikipedia.org/wiki/Augmented_reality">AR</a> that will be packed with the helmet is the key point of this technology. It's not just a helmet, it's your assistant, it's your guardian and it's your enhancer. The helmet is the way of being permanently online.</p>
<p class="long-text">Let's take a quick look at the main components of the helmet:</a>
<ul>
<li>Protective shell</li>
<li>DLP® LightCrafter Display 3010 EVM (mini projector)</li>
<li>2 x speaker</li>
<li>Boom mic</li>
<li>EDS-205 Ethernet switch</li>
<li>2 x computer fan</li>
<li>Arduino GSM Shield</li>
<li>n x Li-ion cell phone battery</li>
<li>Pixy (CMUcam5) Smart Vision Sensor</li>
<li>Raspberry Pi Camera module</li>
<li>4 x Raspberry Pi 3</li>
<li>WPBS254-VIS - 1" Wire Grid Polarizing Beamsplitter</li>
</ul>
<br>
<p class="long-text">Visit the <a href="https://github.com/DragonComputer/DragonArmor">GitHub repository</a> of the project to grab the <a href="https://en.wikipedia.org/wiki/Computer-aided_design">CAD</a> files.</p>
</div>
</div>
</section>
<!-- Contribute Section -->
<section id="contribute" class="content-section text-center">
<div class="download-section">
<div class="container">
<div class="col-lg-8 col-lg-offset-2">
<h2>Contribute</h2>
<p>Join in our GitHub organization & DragonOS Core team on Launchpad for make contributions to our software & hardware projects.</p>
<a href="https://github.com/DragonComputer" target="_blank" class="btn btn-default btn-lg">Join</a>
</div>
</div>
</div>
</section>
<!-- Dragonfire Section -->
<section id="dragonfire" class="container content-section text-center">
<div class="row">
<div class="col-lg-10 col-lg-offset-1" id="divcolvideojs">
<h2>Dragonfire</h2>
<iframe width="720" height="405" src="https://www.youtube.com/embed/fSPXpdVzamo?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
<script type="text/javascript">
// Once the video is ready
videojs("example_video_2").ready(function(){
var myPlayer = this; // Store the video object
var aspectRatio = 9/16; // Make up an aspect ratio
function resizeVideoJS(){
// Get the parent element's actual width
var width = document.getElementById("divcolvideojs").offsetWidth;
// Set width to fill parent element, Set height
myPlayer.width(width).height( width * aspectRatio );
}
resizeVideoJS(); // Initialize the function
window.onresize = resizeVideoJS; // Call the function on resize
});
</script>
<!-- videojs -->
<p>
<p class="long-text"><a href="https://github.com/DragonComputer/Dragonfire" target="_blank">Dragonfire</a> is the open-source virtual assistant project for Ubuntu based Linux distributions. Her main objective is serving as a command and control interface to the helmet user. So that you will be able to give orders just by using your voice commands and your eye movements. That makes the helmet handsfree.</p>
<p class="long-text">We are planning to ship Dragonfire as a preinstalled software package on <a href="https://launchpad.net/dragonos" target="_blank">DragonOS</a> Linux Distribution. DragonOS will be a linux distribution which specially designed for the helmet. It will contain various software packages for controlling the helmet. It will be the first of its kind.</p>
<br>
<p class="long-text">Visit the <a href="https://github.com/DragonComputer/Dragonfire/blob/master/CONTRIBUTING.md">Contributing to Dragonfire page</a> for more detail.</p>
<br><br><br><br>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>Community</h2>
<p>Feel free to be active in our community pages. We believe in freedom of speech and ideas!</p>
<p><a href="mailto:[email protected]">[email protected]</a>
</p>
<ul class="list-inline banner-social-buttons">
<li>
<a href="https://twitter.com/DragonfireAI" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span></a>
</li>
<li>
<a href="https://github.com/DragonComputer" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
</li>
<li>
<a href="https://plus.google.com/b/117016591891504725769/117016591891504725769" class="btn btn-default btn-lg"><i class="fa fa-google-plus fa-fw"></i> <span class="network-name">Google+</span></a>
</li>
</ul>
</div>
</div>
</section>
<!-- Map Section -->
<div id="map"></div>
<!-- Footer -->
<footer>
<div class="container text-center">
<p>Copyright © DRAGON.COMPUTER 2020</p>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCepmOcMgvgtY8Z0S-HeBtZNKBbRu26I2M&callback=initMap"></script>
<!-- Custom Theme JavaScript -->
<script src="js/grayscale.js"></script>
<script>
$(document).ready(function(){
setTimeout(function() {
$('body').animate({
//scrollTop: $("#about").offset().top
}, 1500);
}, 8000);
});
$(window).scroll(function(){
$("#dragonfire_app").css("opacity", 1 - $(window).scrollTop() / 500);
if ($("#dragonfire_app").css("opacity") < 1) {
$("#dragonfire_app_link").removeAttr("href");
} else {
$("#dragonfire_app_link").attr("href", "https://play.google.com/store/apps/details?id=computer.dragon.dragonfire");
}
});
// Initialize and add the map
function initMap() {
// Create a new StyledMapType object, passing it an array of styles,
// and the name to be displayed on the map type control.
var styledMapType = new google.maps.StyledMapType(
[
{
"elementType": "geometry",
"stylers": [
{
"color": "#212121"
}
]
},
{
"elementType": "labels.icon",
"stylers": [
{
"visibility": "off"
}
]
},
{
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#757575"
}
]
},
{
"elementType": "labels.text.stroke",
"stylers": [
{
"color": "#212121"
}
]
},
{
"featureType": "administrative",
"elementType": "geometry",
"stylers": [
{
"color": "#757575"
}
]
},
{
"featureType": "administrative.country",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#9e9e9e"
}
]
},
{
"featureType": "administrative.land_parcel",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "administrative.locality",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#bdbdbd"
}
]
},
{
"featureType": "poi",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#757575"
}
]
},
{
"featureType": "poi.park",
"elementType": "geometry",
"stylers": [
{
"color": "#181818"
}
]
},
{
"featureType": "poi.park",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#616161"
}
]
},
{
"featureType": "poi.park",
"elementType": "labels.text.stroke",
"stylers": [
{
"color": "#1b1b1b"
}
]
},
{
"featureType": "road",
"elementType": "geometry.fill",
"stylers": [
{
"color": "#2c2c2c"
}
]
},
{
"featureType": "road",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#8a8a8a"
}
]
},
{
"featureType": "road.arterial",
"elementType": "geometry",
"stylers": [
{
"color": "#373737"
}
]
},
{
"featureType": "road.highway",
"elementType": "geometry",
"stylers": [
{
"color": "#3c3c3c"
}
]
},
{
"featureType": "road.highway.controlled_access",
"elementType": "geometry",
"stylers": [
{
"color": "#4e4e4e"
}
]
},
{
"featureType": "road.local",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#616161"
}
]
},
{
"featureType": "transit",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#757575"
}
]
},
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"color": "#000000"
}
]
},
{
"featureType": "water",
"elementType": "labels.text.fill",
"stylers": [
{
"color": "#3d3d3d"
}
]
}
],
{name: 'Styled Map'});
// The geolocation coordinates of the point
var point = {lat: 41.055628, lng: 28.986212};
// The map, centered at the point
var map = new google.maps.Map(
document.getElementById('map'), {
zoom: 10,
center: point,
disableDefaultUI: true,
mapTypeControlOptions: {
mapTypeIds: ['roadmap', 'satellite', 'hybrid', 'terrain',
'styled_map']
}
});
//Associate the styled map with the MapTypeId and set it to display.
map.mapTypes.set('styled_map', styledMapType);
map.setMapTypeId('styled_map');
// The marker, positioned at the point
var marker = new google.maps.Marker({position: point, map: map, icon: "img/vector_white.svg"});
}
</script>
</body>
</html>