-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech.html
More file actions
149 lines (142 loc) · 5.51 KB
/
tech.html
File metadata and controls
149 lines (142 loc) · 5.51 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
<!doctype html>
<html lang="en">
<head>
<!-- Title block allowing child pages to override -->
<title>Admo Gesture Platform</title>
<link rel="shortcut icon" type="image/ico" href="assets/img/favicon.ico" />
<!-- Styles -->
<link href="assets/css/gridism.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="assets/css/style.min.css" rel="stylesheet" type="text/css" media="all"/>
<!-- Style block allowing child pages to inject their own styles -->
<script type="text/javascript">
var MTIProjectId='74645da5-ce78-404e-b8f0-bc4b1ad70f84';
(function() {
var mtiTracking = document.createElement('script');
mtiTracking.type='text/javascript';
mtiTracking.async='true';
mtiTracking.src=('https:'==document.location.protocol?'https:':'http:')+'//fast.fonts.net/t/trackingCode.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild( mtiTracking );
})();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39107940-2', 'admoexperience.github.io');
ga('send', 'pageview');
</script>
<link rel="icon" href="<%= asset_path('favicon.png')%>" type="image/png" />
<script src="assets/scripts/jquery-1.10.2.min.js"></script>
</head>
<body>
<div id="wrapper">
<!-- Include -->
<div class="admocom">
<div class="container">
<div class="header_logo">
<a href="index.html"></a>
</div>
<nav class="menu visible">
<ul>
<li ><a href="index.html">Home</a></li>
<li class="selected"><a href="tech.html">Tech</a></li>
<li ><a href="source.html">Open Source</a></li>
<li ><a href="apps.html">Apps</a></li>
<li ><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</div>
<!-- Content block, child page inject content -->
<div id="tech-heading" class="gray">
<h1>Gesture tech made simple</h1>
<p>Admo is the simplest way to build gesture apps with Kinect. Period.</p>
</div>
<div class="section" id="modular">
<div class="container">
<div class="feature left">
<h2>Modular Design</h2>
<p>
We created Admo from the ground up to be completely modular. The result is that Admo can be used as a stand-alone product or individual components can be incorporated into existing software.
</p>
</div>
<div class="feature right graphic">
<img src="assets/img/puzzle.png"/>
</div>
<div class="clear"></div>
</div>
</div>
<div class="section gray" id="build-apps">
<div class="container">
<div class="feature left graphic">
<img src="assets/img/logos.png"/>
</div>
<div class="feature right">
<h2>Simple technology</h2>
<p>
Building gesture apps with the Kinect SDK is time-consuming and painful. Admo lets you build beautiful gesture apps with simple web technologies: HTML5, CSS3 and JavaScript.
</p>
</div>
<div class="clear"></div>
</div>
</div>
<div class="container">
<div id="requirements">
<h2>Minimum Requirements</h2>
<div class="grid">
<div class="unit one-third">
<div class="item">
<div class="requirements-image">
<img src="assets/img/technology/pc.png"/>
</div>
<h3>PC Specs</h3>
<p>
Motherboard | LGA1155, 6x USB</br>CPU | i5, Quad core 3.4ghz</br>RAM | 4GB DDR3-1333 ( PC3-10666 )
</p>
</div>
</div>
<div class="unit one-third">
<div class="item">
<div class="requirements-image">
<img src="assets/img/technology/kinect.png"/>
</div>
<h3>Kinect for Windows</h3>
<p>
Do not buy the Xbox Kinect
</p>
</div>
</div>
<div class="unit one-third">
<div class="item">
<div class="requirements-image">
<img src="assets/img/technology/monitor.png"/>
</div>
<h3>Monitor</h3>
<p>
1080p
</p>
</div>
</div>
</div>
</div>
</div>
<div class="section center" id="get-admo">
<div class="container">
<h2>Admo is now a free open source project</h2>
<a href="source.html" class="button">Source Code</a>
</div>
</div>
<footer>
<div class="fireid-brand">
<a href="http://www.fireid.com">
<img src="assets/img/fireid-footer.png" alt="FireID"/>
<p>Powered by FireID</p>
</a>
</div>
</footer>
</div>
<!-- Script block allowing child pages to inject their own scripts -->
<script src="app.js"></script>
</body>
</html>