-
Notifications
You must be signed in to change notification settings - Fork 0
/
index - copia.html
272 lines (241 loc) · 10.4 KB
/
index - copia.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="resources/images/[email protected]"/>
<link rel="apple-touch-startup-image" href="resources/images/splash.png" />
<title>Kinout - HTML5 Keynote.</title>
<link rel="stylesheet" href="http://kinout.tapquo.com/build/kinout-1.0.css">
<link rel="stylesheet" href="assets/css/theme.kinout.css">
<link href="assets/javascript/rainbow/themes/blackboard.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="kinout">
<section>
<article>
<h1>#kinout<mark>JS</mark></h1>
<h4><mark>HTML5 based Keynote System.</mark></h4>
</article>
</section>
<section>
<article>
<header>
<h2>Header element</h2>
<h4>Header subelement</h2>
</header>
<footer>
<h2>Footer element</h2>
<h4>Footer subelement</h2>
</footer>
<div>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</div>
<div>
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</article>
</section>
<section>
<article>
<header class="box">
<h2>Header element (.box)</h2>
<h4>Subheader element</h2>
</header>
<footer class="box white">
<h2>Footer element (.box .white)</h2>
<h4>Footer subelement</h2>
</footer>
</article>
</section>
<section>
<article data-size="middle">
<blockquote>JavaScript doesn't suck! You're just doing it wrong.</blockquote>
<cite>Doug Crockford</cite>
</article>
</section>
<section data-color="red" data-color="image">
<article>
<h1>vertical slides</h1>
<h3><mark>(press down to view next slide)</mark></h3>
</article>
<article>
<h1>second slide</h1>
<h3><mark>(press down to view next slide)</mark></h3>
</article>
<article>
<h1>third slide</h1>
<h3><mark>Right! Now you can press right key.</mark></h3>
</article>
</section>
<section>
<article>
<h2>data-<mark>step</mark></h2>
<h4>...a cool property for elements in slide.</h4>
<div>
</div>
<div>
<ul>
<li><mark>press down to view next step</mark></li>
<li data-step="fade">Step with "fade"</li>
<li data-step="boom">Step with "boom"</li>
<li data-step="zoom">Step with "zoom"</li>
<li data-step="move">Step with "move"</li>
<li data-step="move alternate">Step with "move alternate"</li>
<li data-step="fade"><mark>press down to see in vertical slide</mark></li>
</ul>
</div>
<div>
</article>
<article>
<header>
<h2>press down...</h2>
</header>
<h1 data-step="move">yeah!!!</h1>
<h2 data-step="move alternate"><mark>it works!</mark></h2>
</article>
</section>
<section data-image="http://farm6.staticflickr.com/5142/5837835862_81f956dd69.jpg" style="background-image: url(http://farm6.staticflickr.com/5142/5837835862_81f956dd69.jpg);">
<article>
<footer class="box">
<h2>data-image</h2>
<h3>... a easy way to full-screen images</h3>
</footer>
</article>
</section>
<section>
<article>
<header>
<h2>Embedded code</h2>
<h4><mark>a great way to show your code</mark></h4>
</header>
<div>
<pre class="margin-top" contenteditable="true">
<code data-language="javascript">$.ajax({
type: 'POST', // defaults to 'GET'
url: 'http://rest',
data: {user: 'soyjavi', pass: 'twitter'},
dataType: 'json', //'json', 'xml', 'html', or 'text'
async: true,
success: function(response) { ... },
error: function(xhr, type) { ... }
});</code> </pre>
<h4><mark>Press to view code with data-step</mark></h4>
<pre class="margin-top" data-step="move alternate">
<code data-language="javascript">$.ajax({
type: 'POST', // defaults to 'GET'
url: 'http://rest',
data: {user: 'soyjavi', pass: 'twitter'},
dataType: 'json', //'json', 'xml', 'html', or 'text'
async: true,
success: function(response) { ... },
error: function(xhr, type) { ... }
});</code> </pre>
</div>
</article>
</section>
<section>
<article>
<header>
<h2>Columns</h2>
<h4><mark>divide your slide easily</mark></h4>
</header>
<div>
<span class="column box big">
.box .big
</span>
<span class="column box big">
.box .big
</span>
</div>
<div>
<span class="column box medium">
.box .medium
</span>
<span class="column box medium">
.box .medium
</span>
<span class="column box medium">
.box .medium
</span>
</div>
<div>
<span class="column box small">
.box .small
</span>
<span class="column box small">
.box .small
</span>
<span class="column box small">
.box .small
</span>
<span class="column box small">
.box .small
</span>
</div>
<div><mark>Example with images</mark></div>
<div>
<span class="column small">
<img src="http://tapquo.com/images/team-javi.jpg" class="bordered size_200"/>
<h4><a href="http://twitter.com/soyjavi"><mark>@soyjavi</mark></a></h4>
</span>
<span class="column small">
<img src="http://tapquo.com/images/team-aitor.jpg" class="bordered size_200"/>
<h4><a href="http://twitter.com/soyjavi"><mark>@aitorjvoa</mark></a></h4>
</span>
<span class="column small">
<img src="http://tapquo.com/images/team-mikel.jpg" class="bordered size_200"/>
<h4><a href="http://twitter.com/soyjavi"><mark>@mikel_ade</mark></a></h4>
</span>
<span class="column small">
<img src="http://tapquo.com/images/team-janire.jpg" class="bordered size_200"/>
<h4><a href="http://twitter.com/soyjavi"><mark>@janixy91</mark></a></h4>
</span>
</div>
</article>
</section>
<section>
<article>
<header>
<h2><mark>Nerd</mark> behind #kinout<mark>JS</mark></h2>
<h4><mark>...dangerous with SublimeText</mark></h4>
</header>
<div class="top">
<span class="column big">
<img src="assets/image/soyjavi.jpg" class="bordered size_256 box">
<h4><a href="http://twitter.com/soyjavi"><mark>@soyjavi</mark></a></h4>
</span>
<span class="column big right">
<ul>
<li class="text size4">Leire's <mark>husband</mark></li>
<li class="text size08">CEO & Founder at <mark>@tapquo</mark></li>
<li class="text size08"><mark>@LungoJS</mark> & <mark>@QuoJS</mark> author</li>
<li class="text size08"><mark>#Web</mark> believer & <mark>#W3C</mark> member</li>
<li class="text size07"><mark>#JavaScript</mark> & #CleanCode lover</li>
<li class="text size2"><mark>#HTML5</mark> evangelist </mark></li>
<li class="text size09">...sometimes <mark>#Nerd Speaker</mark></li>
</ul>
</span>
</div>
</article>
</section>
<section>
<article>
<h1>...fork me on <mark>github</mark></h1>
<h2><a href="https://github.com/soyjavi/kinout"><mark>https://github.com/soyjavi/</mark>kinout</a></h2>
</article>
</section>
</div>
<script src="assets/javascript/QuoJS.js"></script>
<script src="assets/javascript//raf.js"></script>
<script src="http://kinout.tapquo.com/build/kinout-1.0.js"></script>
<script>
$$(document).ready(function() {
KINOUT.init();
});
</script>
<script src="assets/javascript/rainbow/rainbow.min.js"></script>
<script src="assets/javascript/rainbow/language/generic.js"></script>
</body>
</html>