reveal-ck 3.6.0 → 3.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/files/reveal.js/CONTRIBUTING.md +4 -0
- data/files/reveal.js/Gruntfile.js +44 -26
- data/files/reveal.js/LICENSE +1 -1
- data/files/reveal.js/README.md +375 -161
- data/files/reveal.js/bower.json +27 -0
- data/files/reveal.js/css/print/paper.css +4 -3
- data/files/reveal.js/css/print/pdf.css +53 -38
- data/files/reveal.js/css/reveal.css +452 -206
- data/files/reveal.js/css/reveal.scss +328 -175
- data/files/reveal.js/css/theme/README.md +2 -6
- data/files/reveal.js/css/theme/beige.css +81 -50
- data/files/reveal.js/css/theme/black.css +70 -39
- data/files/reveal.js/css/theme/blood.css +81 -57
- data/files/reveal.js/css/theme/league.css +75 -44
- data/files/reveal.js/css/theme/moon.css +75 -44
- data/files/reveal.js/css/theme/night.css +70 -39
- data/files/reveal.js/css/theme/serif.css +72 -41
- data/files/reveal.js/css/theme/simple.css +72 -38
- data/files/reveal.js/css/theme/sky.css +75 -44
- data/files/reveal.js/css/theme/solarized.css +75 -44
- data/files/reveal.js/css/theme/source/black.scss +2 -2
- data/files/reveal.js/css/theme/source/blood.scss +3 -16
- data/files/reveal.js/css/theme/source/night.scss +0 -1
- data/files/reveal.js/css/theme/source/simple.scss +5 -0
- data/files/reveal.js/css/theme/source/white.scss +2 -2
- data/files/reveal.js/css/theme/template/settings.scss +1 -1
- data/files/reveal.js/css/theme/template/theme.scss +36 -23
- data/files/reveal.js/css/theme/white.css +75 -44
- data/files/reveal.js/demo.html +410 -0
- data/files/reveal.js/index.html +14 -373
- data/files/reveal.js/js/reveal.js +1186 -350
- data/files/reveal.js/lib/css/zenburn.css +41 -78
- data/files/reveal.js/lib/js/head.min.js +9 -8
- data/files/reveal.js/package.json +22 -26
- data/files/reveal.js/plugin/highlight/highlight.js +52 -4
- data/files/reveal.js/plugin/markdown/example.html +1 -1
- data/files/reveal.js/plugin/markdown/markdown.js +40 -21
- data/files/reveal.js/plugin/markdown/marked.js +2 -33
- data/files/reveal.js/plugin/math/math.js +5 -2
- data/files/reveal.js/plugin/multiplex/client.js +1 -1
- data/files/reveal.js/plugin/multiplex/index.js +24 -16
- data/files/reveal.js/plugin/multiplex/master.js +22 -42
- data/files/reveal.js/plugin/multiplex/package.json +19 -0
- data/files/reveal.js/plugin/notes-server/client.js +6 -1
- data/files/reveal.js/plugin/notes-server/index.js +17 -14
- data/files/reveal.js/plugin/notes-server/notes.html +215 -26
- data/files/reveal.js/plugin/notes/notes.html +372 -32
- data/files/reveal.js/plugin/notes/notes.js +40 -7
- data/files/reveal.js/plugin/print-pdf/print-pdf.js +47 -26
- data/files/reveal.js/plugin/zoom-js/zoom.js +12 -2
- data/files/reveal.js/test/examples/math.html +1 -1
- data/files/reveal.js/test/examples/slide-backgrounds.html +1 -1
- data/files/reveal.js/test/examples/slide-transitions.html +101 -0
- data/files/reveal.js/test/simple.md +12 -0
- data/files/reveal.js/test/test-markdown-element-attributes.html +3 -3
- data/files/reveal.js/test/test-markdown-element-attributes.js +1 -1
- data/files/reveal.js/test/test-markdown-external.html +36 -0
- data/files/reveal.js/test/test-markdown-external.js +24 -0
- data/files/reveal.js/test/test-markdown-options.html +41 -0
- data/files/reveal.js/test/test-markdown-options.js +26 -0
- data/files/reveal.js/test/test-markdown.html +1 -1
- data/files/reveal.js/test/test.html +5 -1
- data/files/reveal.js/test/test.js +26 -1
- data/lib/reveal-ck/version.rb +1 -1
- metadata +11 -4
- data/files/reveal.js/plugin/leap/leap.js +0 -159
- data/files/reveal.js/plugin/remotes/remotes.js +0 -39
@@ -0,0 +1,410 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta charset="utf-8">
|
6
|
+
|
7
|
+
<title>reveal.js – The HTML Presentation Framework</title>
|
8
|
+
|
9
|
+
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
|
10
|
+
<meta name="author" content="Hakim El Hattab">
|
11
|
+
|
12
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
13
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
14
|
+
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
16
|
+
|
17
|
+
<link rel="stylesheet" href="css/reveal.css">
|
18
|
+
<link rel="stylesheet" href="css/theme/black.css" id="theme">
|
19
|
+
|
20
|
+
<!-- Theme used for syntax highlighting of code -->
|
21
|
+
<link rel="stylesheet" href="lib/css/zenburn.css">
|
22
|
+
|
23
|
+
<!-- Printing and PDF exports -->
|
24
|
+
<script>
|
25
|
+
var link = document.createElement( 'link' );
|
26
|
+
link.rel = 'stylesheet';
|
27
|
+
link.type = 'text/css';
|
28
|
+
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
|
29
|
+
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<!--[if lt IE 9]>
|
33
|
+
<script src="lib/js/html5shiv.js"></script>
|
34
|
+
<![endif]-->
|
35
|
+
</head>
|
36
|
+
|
37
|
+
<body>
|
38
|
+
|
39
|
+
<div class="reveal">
|
40
|
+
|
41
|
+
<!-- Any section element inside of this container is displayed as a slide -->
|
42
|
+
<div class="slides">
|
43
|
+
<section>
|
44
|
+
<h1>Reveal.js</h1>
|
45
|
+
<h3>The HTML Presentation Framework</h3>
|
46
|
+
<p>
|
47
|
+
<small>Created by <a href="http://hakim.se">Hakim El Hattab</a> / <a href="http://twitter.com/hakimel">@hakimel</a></small>
|
48
|
+
</p>
|
49
|
+
</section>
|
50
|
+
|
51
|
+
<section>
|
52
|
+
<h2>Hello There</h2>
|
53
|
+
<p>
|
54
|
+
reveal.js enables you to create beautiful interactive slide decks using HTML. This presentation will show you examples of what it can do.
|
55
|
+
</p>
|
56
|
+
</section>
|
57
|
+
|
58
|
+
<!-- Example of nested vertical slides -->
|
59
|
+
<section>
|
60
|
+
<section>
|
61
|
+
<h2>Vertical Slides</h2>
|
62
|
+
<p>Slides can be nested inside of each other.</p>
|
63
|
+
<p>Use the <em>Space</em> key to navigate through all slides.</p>
|
64
|
+
<br>
|
65
|
+
<a href="#" class="navigate-down">
|
66
|
+
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
|
67
|
+
</a>
|
68
|
+
</section>
|
69
|
+
<section>
|
70
|
+
<h2>Basement Level 1</h2>
|
71
|
+
<p>Nested slides are useful for adding additional detail underneath a high level horizontal slide.</p>
|
72
|
+
</section>
|
73
|
+
<section>
|
74
|
+
<h2>Basement Level 2</h2>
|
75
|
+
<p>That's it, time to go back up.</p>
|
76
|
+
<br>
|
77
|
+
<a href="#/2">
|
78
|
+
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="transform: rotate(180deg); -webkit-transform: rotate(180deg);">
|
79
|
+
</a>
|
80
|
+
</section>
|
81
|
+
</section>
|
82
|
+
|
83
|
+
<section>
|
84
|
+
<h2>Slides</h2>
|
85
|
+
<p>
|
86
|
+
Not a coder? Not a problem. There's a fully-featured visual editor for authoring these, try it out at <a href="http://slides.com" target="_blank">http://slides.com</a>.
|
87
|
+
</p>
|
88
|
+
</section>
|
89
|
+
|
90
|
+
<section>
|
91
|
+
<h2>Point of View</h2>
|
92
|
+
<p>
|
93
|
+
Press <strong>ESC</strong> to enter the slide overview.
|
94
|
+
</p>
|
95
|
+
<p>
|
96
|
+
Hold down alt and click on any element to zoom in on it using <a href="http://lab.hakim.se/zoom-js">zoom.js</a>. Alt + click anywhere to zoom back out.
|
97
|
+
</p>
|
98
|
+
</section>
|
99
|
+
|
100
|
+
<section>
|
101
|
+
<h2>Touch Optimized</h2>
|
102
|
+
<p>
|
103
|
+
Presentations look great on touch devices, like mobile phones and tablets. Simply swipe through your slides.
|
104
|
+
</p>
|
105
|
+
</section>
|
106
|
+
|
107
|
+
<section data-markdown>
|
108
|
+
<script type="text/template">
|
109
|
+
## Markdown support
|
110
|
+
|
111
|
+
Write content using inline or external Markdown.
|
112
|
+
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
|
113
|
+
|
114
|
+
```
|
115
|
+
<section data-markdown>
|
116
|
+
## Markdown support
|
117
|
+
|
118
|
+
Write content using inline or external Markdown.
|
119
|
+
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
|
120
|
+
</section>
|
121
|
+
```
|
122
|
+
</script>
|
123
|
+
</section>
|
124
|
+
|
125
|
+
<section>
|
126
|
+
<section id="fragments">
|
127
|
+
<h2>Fragments</h2>
|
128
|
+
<p>Hit the next arrow...</p>
|
129
|
+
<p class="fragment">... to step through ...</p>
|
130
|
+
<p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
|
131
|
+
|
132
|
+
<aside class="notes">
|
133
|
+
This slide has fragments which are also stepped through in the notes window.
|
134
|
+
</aside>
|
135
|
+
</section>
|
136
|
+
<section>
|
137
|
+
<h2>Fragment Styles</h2>
|
138
|
+
<p>There's different types of fragments, like:</p>
|
139
|
+
<p class="fragment grow">grow</p>
|
140
|
+
<p class="fragment shrink">shrink</p>
|
141
|
+
<p class="fragment fade-out">fade-out</p>
|
142
|
+
<p class="fragment fade-up">fade-up (also down, left and right!)</p>
|
143
|
+
<p class="fragment current-visible">current-visible</p>
|
144
|
+
<p>Highlight <span class="fragment highlight-red">red</span> <span class="fragment highlight-blue">blue</span> <span class="fragment highlight-green">green</span></p>
|
145
|
+
</section>
|
146
|
+
</section>
|
147
|
+
|
148
|
+
<section id="transitions">
|
149
|
+
<h2>Transition Styles</h2>
|
150
|
+
<p>
|
151
|
+
You can select from different transitions, like: <br>
|
152
|
+
<a href="?transition=none#/transitions">None</a> -
|
153
|
+
<a href="?transition=fade#/transitions">Fade</a> -
|
154
|
+
<a href="?transition=slide#/transitions">Slide</a> -
|
155
|
+
<a href="?transition=convex#/transitions">Convex</a> -
|
156
|
+
<a href="?transition=concave#/transitions">Concave</a> -
|
157
|
+
<a href="?transition=zoom#/transitions">Zoom</a>
|
158
|
+
</p>
|
159
|
+
</section>
|
160
|
+
|
161
|
+
<section id="themes">
|
162
|
+
<h2>Themes</h2>
|
163
|
+
<p>
|
164
|
+
reveal.js comes with a few themes built in: <br>
|
165
|
+
<!-- Hacks to swap themes after the page has loaded. Not flexible and only intended for the reveal.js demo deck. -->
|
166
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;">Black (default)</a> -
|
167
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;">White</a> -
|
168
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/league.css'); return false;">League</a> -
|
169
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/sky.css'); return false;">Sky</a> -
|
170
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/beige.css'); return false;">Beige</a> -
|
171
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/simple.css'); return false;">Simple</a> <br>
|
172
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/serif.css'); return false;">Serif</a> -
|
173
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/blood.css'); return false;">Blood</a> -
|
174
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/night.css'); return false;">Night</a> -
|
175
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/moon.css'); return false;">Moon</a> -
|
176
|
+
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/solarized.css'); return false;">Solarized</a>
|
177
|
+
</p>
|
178
|
+
</section>
|
179
|
+
|
180
|
+
<section>
|
181
|
+
<section data-background="#dddddd">
|
182
|
+
<h2>Slide Backgrounds</h2>
|
183
|
+
<p>
|
184
|
+
Set <code>data-background="#dddddd"</code> on a slide to change the background color. All CSS color formats are supported.
|
185
|
+
</p>
|
186
|
+
<a href="#" class="navigate-down">
|
187
|
+
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
|
188
|
+
</a>
|
189
|
+
</section>
|
190
|
+
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png">
|
191
|
+
<h2>Image Backgrounds</h2>
|
192
|
+
<pre><code class="hljs"><section data-background="image.png"></code></pre>
|
193
|
+
</section>
|
194
|
+
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png" data-background-repeat="repeat" data-background-size="100px">
|
195
|
+
<h2>Tiled Backgrounds</h2>
|
196
|
+
<pre><code class="hljs" style="word-wrap: break-word;"><section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"></code></pre>
|
197
|
+
</section>
|
198
|
+
<section data-background-video="https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm" data-background-color="#000000">
|
199
|
+
<div style="background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px;">
|
200
|
+
<h2>Video Backgrounds</h2>
|
201
|
+
<pre><code class="hljs" style="word-wrap: break-word;"><section data-background-video="video.mp4,video.webm"></code></pre>
|
202
|
+
</div>
|
203
|
+
</section>
|
204
|
+
<section data-background="http://i.giphy.com/90F8aUepslB84.gif">
|
205
|
+
<h2>... and GIFs!</h2>
|
206
|
+
</section>
|
207
|
+
</section>
|
208
|
+
|
209
|
+
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
|
210
|
+
<h2>Background Transitions</h2>
|
211
|
+
<p>
|
212
|
+
Different background transitions are available via the backgroundTransition option. This one's called "zoom".
|
213
|
+
</p>
|
214
|
+
<pre><code class="hljs">Reveal.configure({ backgroundTransition: 'zoom' })</code></pre>
|
215
|
+
</section>
|
216
|
+
|
217
|
+
<section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
|
218
|
+
<h2>Background Transitions</h2>
|
219
|
+
<p>
|
220
|
+
You can override background transitions per-slide.
|
221
|
+
</p>
|
222
|
+
<pre><code class="hljs" style="word-wrap: break-word;"><section data-background-transition="zoom"></code></pre>
|
223
|
+
</section>
|
224
|
+
|
225
|
+
<section>
|
226
|
+
<h2>Pretty Code</h2>
|
227
|
+
<pre><code class="hljs" data-trim contenteditable>
|
228
|
+
function linkify( selector ) {
|
229
|
+
if( supports3DTransforms ) {
|
230
|
+
|
231
|
+
var nodes = document.querySelectorAll( selector );
|
232
|
+
|
233
|
+
for( var i = 0, len = nodes.length; i < len; i++ ) {
|
234
|
+
var node = nodes[i];
|
235
|
+
|
236
|
+
if( !node.className ) {
|
237
|
+
node.className += ' roll';
|
238
|
+
}
|
239
|
+
}
|
240
|
+
}
|
241
|
+
}
|
242
|
+
</code></pre>
|
243
|
+
<p>Code syntax highlighting courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
|
244
|
+
</section>
|
245
|
+
|
246
|
+
<section>
|
247
|
+
<h2>Marvelous List</h2>
|
248
|
+
<ul>
|
249
|
+
<li>No order here</li>
|
250
|
+
<li>Or here</li>
|
251
|
+
<li>Or here</li>
|
252
|
+
<li>Or here</li>
|
253
|
+
</ul>
|
254
|
+
</section>
|
255
|
+
|
256
|
+
<section>
|
257
|
+
<h2>Fantastic Ordered List</h2>
|
258
|
+
<ol>
|
259
|
+
<li>One is smaller than...</li>
|
260
|
+
<li>Two is smaller than...</li>
|
261
|
+
<li>Three!</li>
|
262
|
+
</ol>
|
263
|
+
</section>
|
264
|
+
|
265
|
+
<section>
|
266
|
+
<h2>Tabular Tables</h2>
|
267
|
+
<table>
|
268
|
+
<thead>
|
269
|
+
<tr>
|
270
|
+
<th>Item</th>
|
271
|
+
<th>Value</th>
|
272
|
+
<th>Quantity</th>
|
273
|
+
</tr>
|
274
|
+
</thead>
|
275
|
+
<tbody>
|
276
|
+
<tr>
|
277
|
+
<td>Apples</td>
|
278
|
+
<td>$1</td>
|
279
|
+
<td>7</td>
|
280
|
+
</tr>
|
281
|
+
<tr>
|
282
|
+
<td>Lemonade</td>
|
283
|
+
<td>$2</td>
|
284
|
+
<td>18</td>
|
285
|
+
</tr>
|
286
|
+
<tr>
|
287
|
+
<td>Bread</td>
|
288
|
+
<td>$3</td>
|
289
|
+
<td>2</td>
|
290
|
+
</tr>
|
291
|
+
</tbody>
|
292
|
+
</table>
|
293
|
+
</section>
|
294
|
+
|
295
|
+
<section>
|
296
|
+
<h2>Clever Quotes</h2>
|
297
|
+
<p>
|
298
|
+
These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
|
299
|
+
“The nice thing about standards is that there are so many to choose from”</q> and block:
|
300
|
+
</p>
|
301
|
+
<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
|
302
|
+
“For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
|
303
|
+
reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.”
|
304
|
+
</blockquote>
|
305
|
+
</section>
|
306
|
+
|
307
|
+
<section>
|
308
|
+
<h2>Intergalactic Interconnections</h2>
|
309
|
+
<p>
|
310
|
+
You can link between slides internally,
|
311
|
+
<a href="#/2/3">like this</a>.
|
312
|
+
</p>
|
313
|
+
</section>
|
314
|
+
|
315
|
+
<section>
|
316
|
+
<h2>Speaker View</h2>
|
317
|
+
<p>There's a <a href="https://github.com/hakimel/reveal.js#speaker-notes">speaker view</a>. It includes a timer, preview of the upcoming slide as well as your speaker notes.</p>
|
318
|
+
<p>Press the <em>S</em> key to try it out.</p>
|
319
|
+
|
320
|
+
<aside class="notes">
|
321
|
+
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
|
322
|
+
</aside>
|
323
|
+
</section>
|
324
|
+
|
325
|
+
<section>
|
326
|
+
<h2>Export to PDF</h2>
|
327
|
+
<p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, here's an example:</p>
|
328
|
+
<iframe data-src="https://www.slideshare.net/slideshow/embed_code/42840540" width="445" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:3px solid #666; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
|
329
|
+
</section>
|
330
|
+
|
331
|
+
<section>
|
332
|
+
<h2>Global State</h2>
|
333
|
+
<p>
|
334
|
+
Set <code>data-state="something"</code> on a slide and <code>"something"</code>
|
335
|
+
will be added as a class to the document element when the slide is open. This lets you
|
336
|
+
apply broader style changes, like switching the page background.
|
337
|
+
</p>
|
338
|
+
</section>
|
339
|
+
|
340
|
+
<section data-state="customevent">
|
341
|
+
<h2>State Events</h2>
|
342
|
+
<p>
|
343
|
+
Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
|
344
|
+
</p>
|
345
|
+
<pre><code class="javascript" data-trim contenteditable style="font-size: 18px;">
|
346
|
+
Reveal.addEventListener( 'customevent', function() {
|
347
|
+
console.log( '"customevent" has fired' );
|
348
|
+
} );
|
349
|
+
</code></pre>
|
350
|
+
</section>
|
351
|
+
|
352
|
+
<section>
|
353
|
+
<h2>Take a Moment</h2>
|
354
|
+
<p>
|
355
|
+
Press B or . on your keyboard to pause the presentation. This is helpful when you're on stage and want to take distracting slides off the screen.
|
356
|
+
</p>
|
357
|
+
</section>
|
358
|
+
|
359
|
+
<section>
|
360
|
+
<h2>Much more</h2>
|
361
|
+
<ul>
|
362
|
+
<li>Right-to-left support</li>
|
363
|
+
<li><a href="https://github.com/hakimel/reveal.js#api">Extensive JavaScript API</a></li>
|
364
|
+
<li><a href="https://github.com/hakimel/reveal.js#auto-sliding">Auto-progression</a></li>
|
365
|
+
<li><a href="https://github.com/hakimel/reveal.js#parallax-background">Parallax backgrounds</a></li>
|
366
|
+
<li><a href="https://github.com/hakimel/reveal.js#keyboard-bindings">Custom keyboard bindings</a></li>
|
367
|
+
</ul>
|
368
|
+
</section>
|
369
|
+
|
370
|
+
<section style="text-align: left;">
|
371
|
+
<h1>THE END</h1>
|
372
|
+
<p>
|
373
|
+
- <a href="http://slides.com">Try the online editor</a> <br>
|
374
|
+
- <a href="https://github.com/hakimel/reveal.js">Source code & documentation</a>
|
375
|
+
</p>
|
376
|
+
</section>
|
377
|
+
|
378
|
+
</div>
|
379
|
+
|
380
|
+
</div>
|
381
|
+
|
382
|
+
<script src="lib/js/head.min.js"></script>
|
383
|
+
<script src="js/reveal.js"></script>
|
384
|
+
|
385
|
+
<script>
|
386
|
+
|
387
|
+
// More info https://github.com/hakimel/reveal.js#configuration
|
388
|
+
Reveal.initialize({
|
389
|
+
controls: true,
|
390
|
+
progress: true,
|
391
|
+
history: true,
|
392
|
+
center: true,
|
393
|
+
|
394
|
+
transition: 'slide', // none/fade/slide/convex/concave/zoom
|
395
|
+
|
396
|
+
// More info https://github.com/hakimel/reveal.js#dependencies
|
397
|
+
dependencies: [
|
398
|
+
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
|
399
|
+
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
400
|
+
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
401
|
+
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
|
402
|
+
{ src: 'plugin/zoom-js/zoom.js', async: true },
|
403
|
+
{ src: 'plugin/notes/notes.js', async: true }
|
404
|
+
]
|
405
|
+
});
|
406
|
+
|
407
|
+
</script>
|
408
|
+
|
409
|
+
</body>
|
410
|
+
</html>
|
data/files/reveal.js/index.html
CHANGED
@@ -1,23 +1,15 @@
|
|
1
1
|
<!doctype html>
|
2
|
-
<html
|
3
|
-
|
2
|
+
<html>
|
4
3
|
<head>
|
5
4
|
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
6
6
|
|
7
|
-
<title>reveal.js
|
8
|
-
|
9
|
-
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
|
10
|
-
<meta name="author" content="Hakim El Hattab">
|
11
|
-
|
12
|
-
<meta name="apple-mobile-web-app-capable" content="yes" />
|
13
|
-
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
14
|
-
|
15
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
|
7
|
+
<title>reveal.js</title>
|
16
8
|
|
17
9
|
<link rel="stylesheet" href="css/reveal.css">
|
18
|
-
<link rel="stylesheet" href="css/theme/black.css"
|
10
|
+
<link rel="stylesheet" href="css/theme/black.css">
|
19
11
|
|
20
|
-
<!--
|
12
|
+
<!-- Theme used for syntax highlighting of code -->
|
21
13
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
22
14
|
|
23
15
|
<!-- Printing and PDF exports -->
|
@@ -28,381 +20,30 @@
|
|
28
20
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
|
29
21
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
30
22
|
</script>
|
31
|
-
|
32
|
-
<!--[if lt IE 9]>
|
33
|
-
<script src="lib/js/html5shiv.js"></script>
|
34
|
-
<![endif]-->
|
35
23
|
</head>
|
36
|
-
|
37
24
|
<body>
|
38
|
-
|
39
25
|
<div class="reveal">
|
40
|
-
|
41
|
-
<!-- Any section element inside of this container is displayed as a slide -->
|
42
26
|
<div class="slides">
|
43
|
-
<section>
|
44
|
-
|
45
|
-
<h3>The HTML Presentation Framework</h3>
|
46
|
-
<p>
|
47
|
-
<small>Created by <a href="http://hakim.se">Hakim El Hattab</a> / <a href="http://twitter.com/hakimel">@hakimel</a></small>
|
48
|
-
</p>
|
49
|
-
</section>
|
50
|
-
|
51
|
-
<section>
|
52
|
-
<h2>Hello There</h2>
|
53
|
-
<p>
|
54
|
-
reveal.js enables you to create beautiful interactive slide decks using HTML. This presentation will show you examples of what it can do.
|
55
|
-
</p>
|
56
|
-
</section>
|
57
|
-
|
58
|
-
<!-- Example of nested vertical slides -->
|
59
|
-
<section>
|
60
|
-
<section>
|
61
|
-
<h2>Vertical Slides</h2>
|
62
|
-
<p>Slides can be nested inside of each other.</p>
|
63
|
-
<p>Use the <em>Space</em> key to navigate through all slides.</p>
|
64
|
-
<br>
|
65
|
-
<a href="#" class="navigate-down">
|
66
|
-
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
|
67
|
-
</a>
|
68
|
-
</section>
|
69
|
-
<section>
|
70
|
-
<h2>Basement Level 1</h2>
|
71
|
-
<p>Nested slides are useful for adding additional detail underneath a high level horizontal slide.</p>
|
72
|
-
</section>
|
73
|
-
<section>
|
74
|
-
<h2>Basement Level 2</h2>
|
75
|
-
<p>That's it, time to go back up.</p>
|
76
|
-
<br>
|
77
|
-
<a href="#/2">
|
78
|
-
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);">
|
79
|
-
</a>
|
80
|
-
</section>
|
81
|
-
</section>
|
82
|
-
|
83
|
-
<section>
|
84
|
-
<h2>Slides</h2>
|
85
|
-
<p>
|
86
|
-
Not a coder? Not a problem. There's a fully-featured visual editor for authoring these, try it out at <a href="http://slides.com" target="_blank">http://slides.com</a>.
|
87
|
-
</p>
|
88
|
-
</section>
|
89
|
-
|
90
|
-
<section>
|
91
|
-
<h2>Point of View</h2>
|
92
|
-
<p>
|
93
|
-
Press <strong>ESC</strong> to enter the slide overview.
|
94
|
-
</p>
|
95
|
-
<p>
|
96
|
-
Hold down alt and click on any element to zoom in on it using <a href="http://lab.hakim.se/zoom-js">zoom.js</a>. Alt + click anywhere to zoom back out.
|
97
|
-
</p>
|
98
|
-
</section>
|
99
|
-
|
100
|
-
<section>
|
101
|
-
<h2>Touch Optimized</h2>
|
102
|
-
<p>
|
103
|
-
Presentations look great on touch devices, like mobile phones and tablets. Simply swipe through your slides.
|
104
|
-
</p>
|
105
|
-
</section>
|
106
|
-
|
107
|
-
<section data-markdown>
|
108
|
-
<script type="text/template">
|
109
|
-
## Markdown support
|
110
|
-
|
111
|
-
Write content using inline or external Markdown.
|
112
|
-
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
|
113
|
-
|
114
|
-
```
|
115
|
-
<section data-markdown>
|
116
|
-
## Markdown support
|
117
|
-
|
118
|
-
Write content using inline or external Markdown.
|
119
|
-
Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
|
120
|
-
</section>
|
121
|
-
```
|
122
|
-
</script>
|
123
|
-
</section>
|
124
|
-
|
125
|
-
<section>
|
126
|
-
<section id="fragments">
|
127
|
-
<h2>Fragments</h2>
|
128
|
-
<p>Hit the next arrow...</p>
|
129
|
-
<p class="fragment">... to step through ...</p>
|
130
|
-
<p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
|
131
|
-
|
132
|
-
<aside class="notes">
|
133
|
-
This slide has fragments which are also stepped through in the notes window.
|
134
|
-
</aside>
|
135
|
-
</section>
|
136
|
-
<section>
|
137
|
-
<h2>Fragment Styles</h2>
|
138
|
-
<p>There's different types of fragments, like:</p>
|
139
|
-
<p class="fragment grow">grow</p>
|
140
|
-
<p class="fragment shrink">shrink</p>
|
141
|
-
<p class="fragment roll-in">roll-in</p>
|
142
|
-
<p class="fragment fade-out">fade-out</p>
|
143
|
-
<p class="fragment current-visible">current-visible</p>
|
144
|
-
<p class="fragment highlight-red">highlight-red</p>
|
145
|
-
<p class="fragment highlight-blue">highlight-blue</p>
|
146
|
-
</section>
|
147
|
-
</section>
|
148
|
-
|
149
|
-
<section id="transitions">
|
150
|
-
<h2>Transition Styles</h2>
|
151
|
-
<p>
|
152
|
-
You can select from different transitions, like: <br>
|
153
|
-
<a href="?transition=none#/transitions">None</a> -
|
154
|
-
<a href="?transition=fade#/transitions">Fade</a> -
|
155
|
-
<a href="?transition=slide#/transitions">Slide</a> -
|
156
|
-
<a href="?transition=convex#/transitions">Convex</a> -
|
157
|
-
<a href="?transition=concave#/transitions">Concave</a> -
|
158
|
-
<a href="?transition=zoom#/transitions">Zoom</a>
|
159
|
-
</p>
|
160
|
-
</section>
|
161
|
-
|
162
|
-
<section id="themes">
|
163
|
-
<h2>Themes</h2>
|
164
|
-
<p>
|
165
|
-
reveal.js comes with a few themes built in: <br>
|
166
|
-
<!-- Hacks to swap themes after the page has loaded. Not flexible and only intended for the reveal.js demo deck. -->
|
167
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;">Black (default)</a> -
|
168
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;">White</a> -
|
169
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/league.css'); return false;">League</a> -
|
170
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/sky.css'); return false;">Sky</a> -
|
171
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/beige.css'); return false;">Beige</a> -
|
172
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/simple.css'); return false;">Simple</a> <br>
|
173
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/serif.css'); return false;">Serif</a> -
|
174
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/night.css'); return false;">Night</a> -
|
175
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/moon.css'); return false;">Moon</a> -
|
176
|
-
<a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/solarized.css'); return false;">Solarized</a>
|
177
|
-
</p>
|
178
|
-
</section>
|
179
|
-
|
180
|
-
<section>
|
181
|
-
<section data-background="#dddddd">
|
182
|
-
<h2>Slide Backgrounds</h2>
|
183
|
-
<p>
|
184
|
-
Set <code>data-background="#dddddd"</code> on a slide to change the background color. All CSS color formats are supported.
|
185
|
-
</p>
|
186
|
-
<a href="#" class="navigate-down">
|
187
|
-
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
|
188
|
-
</a>
|
189
|
-
</section>
|
190
|
-
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png">
|
191
|
-
<h2>Image Backgrounds</h2>
|
192
|
-
<pre><code><section data-background="image.png"></code></pre>
|
193
|
-
</section>
|
194
|
-
<section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png" data-background-repeat="repeat" data-background-size="100px">
|
195
|
-
<h2>Tiled Backgrounds</h2>
|
196
|
-
<pre><code style="word-wrap: break-word;"><section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"></code></pre>
|
197
|
-
</section>
|
198
|
-
<section data-background-video="https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm" data-background-color="#000000">
|
199
|
-
<div style="background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px;">
|
200
|
-
<h2>Video Backgrounds</h2>
|
201
|
-
<pre><code style="word-wrap: break-word;"><section data-background-video="video.mp4,video.webm"></code></pre>
|
202
|
-
</div>
|
203
|
-
</section>
|
204
|
-
</section>
|
205
|
-
|
206
|
-
<section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
|
207
|
-
<h2>Background Transitions</h2>
|
208
|
-
<p>
|
209
|
-
Different background transitions are available via the backgroundTransition option. This one's called "zoom".
|
210
|
-
</p>
|
211
|
-
<pre><code>Reveal.configure({ backgroundTransition: 'zoom' })</code></pre>
|
212
|
-
</section>
|
213
|
-
|
214
|
-
<section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
|
215
|
-
<h2>Background Transitions</h2>
|
216
|
-
<p>
|
217
|
-
You can override background transitions per-slide.
|
218
|
-
</p>
|
219
|
-
<pre><code style="word-wrap: break-word;"><section data-background-transition="zoom"></code></pre>
|
220
|
-
</section>
|
221
|
-
|
222
|
-
<section>
|
223
|
-
<h2>Pretty Code</h2>
|
224
|
-
<pre><code data-trim contenteditable>
|
225
|
-
function linkify( selector ) {
|
226
|
-
if( supports3DTransforms ) {
|
227
|
-
|
228
|
-
var nodes = document.querySelectorAll( selector );
|
229
|
-
|
230
|
-
for( var i = 0, len = nodes.length; i < len; i++ ) {
|
231
|
-
var node = nodes[i];
|
232
|
-
|
233
|
-
if( !node.className ) {
|
234
|
-
node.className += ' roll';
|
235
|
-
}
|
236
|
-
}
|
237
|
-
}
|
238
|
-
}
|
239
|
-
</code></pre>
|
240
|
-
<p>Code syntax highlighting courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
|
241
|
-
</section>
|
242
|
-
|
243
|
-
<section>
|
244
|
-
<h2>Marvelous List</h2>
|
245
|
-
<ul>
|
246
|
-
<li>No order here</li>
|
247
|
-
<li>Or here</li>
|
248
|
-
<li>Or here</li>
|
249
|
-
<li>Or here</li>
|
250
|
-
</ul>
|
251
|
-
</section>
|
252
|
-
|
253
|
-
<section>
|
254
|
-
<h2>Fantastic Ordered List</h2>
|
255
|
-
<ol>
|
256
|
-
<li>One is smaller than...</li>
|
257
|
-
<li>Two is smaller than...</li>
|
258
|
-
<li>Three!</li>
|
259
|
-
</ol>
|
260
|
-
</section>
|
261
|
-
|
262
|
-
<section>
|
263
|
-
<h2>Tabular Tables</h2>
|
264
|
-
<table>
|
265
|
-
<thead>
|
266
|
-
<tr>
|
267
|
-
<th>Item</th>
|
268
|
-
<th>Value</th>
|
269
|
-
<th>Quantity</th>
|
270
|
-
</tr>
|
271
|
-
</thead>
|
272
|
-
<tbody>
|
273
|
-
<tr>
|
274
|
-
<td>Apples</td>
|
275
|
-
<td>$1</td>
|
276
|
-
<td>7</td>
|
277
|
-
<tr>
|
278
|
-
<tr>
|
279
|
-
<td>Lemonade</td>
|
280
|
-
<td>$2</td>
|
281
|
-
<td>18</td>
|
282
|
-
<tr>
|
283
|
-
<tr>
|
284
|
-
<td>Bread</td>
|
285
|
-
<td>$3</td>
|
286
|
-
<td>2</td>
|
287
|
-
<tr>
|
288
|
-
</tbody>
|
289
|
-
</table>
|
290
|
-
</section>
|
291
|
-
|
292
|
-
<section>
|
293
|
-
<h2>Clever Quotes</h2>
|
294
|
-
<p>
|
295
|
-
These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
|
296
|
-
“The nice thing about standards is that there are so many to choose from”</q> and block:
|
297
|
-
</p>
|
298
|
-
<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
|
299
|
-
“For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
|
300
|
-
reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.”
|
301
|
-
</blockquote>
|
302
|
-
</section>
|
303
|
-
|
304
|
-
<section>
|
305
|
-
<h2>Intergalactic Interconnections</h2>
|
306
|
-
<p>
|
307
|
-
You can link between slides internally,
|
308
|
-
<a href="#/2/3">like this</a>.
|
309
|
-
</p>
|
310
|
-
</section>
|
311
|
-
|
312
|
-
<section>
|
313
|
-
<h2>Speaker View</h2>
|
314
|
-
<p>There's a <a href="https://github.com/hakimel/reveal.js#speaker-notes">speaker view</a>. It includes a timer, preview of the upcoming slide as well as your speaker notes.</p>
|
315
|
-
<p>Press the <em>S</em> key to try it out.</p>
|
316
|
-
|
317
|
-
<aside class="notes">
|
318
|
-
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
|
319
|
-
</aside>
|
320
|
-
</section>
|
321
|
-
|
322
|
-
<section>
|
323
|
-
<h2>Export to PDF</h2>
|
324
|
-
<p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, here's an example:</p>
|
325
|
-
<iframe src="//www.slideshare.net/slideshow/embed_code/42840540" width="445" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:3px solid #666; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
|
326
|
-
</section>
|
327
|
-
|
328
|
-
<section>
|
329
|
-
<h2>Global State</h2>
|
330
|
-
<p>
|
331
|
-
Set <code>data-state="something"</code> on a slide and <code>"something"</code>
|
332
|
-
will be added as a class to the document element when the slide is open. This lets you
|
333
|
-
apply broader style changes, like switching the page background.
|
334
|
-
</p>
|
335
|
-
</section>
|
336
|
-
|
337
|
-
<section data-state="customevent">
|
338
|
-
<h2>State Events</h2>
|
339
|
-
<p>
|
340
|
-
Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
|
341
|
-
</p>
|
342
|
-
<pre><code class="javascript" data-trim contenteditable style="font-size: 18px;">
|
343
|
-
Reveal.addEventListener( 'customevent', function() {
|
344
|
-
console.log( '"customevent" has fired' );
|
345
|
-
} );
|
346
|
-
</code></pre>
|
347
|
-
</section>
|
348
|
-
|
349
|
-
<section>
|
350
|
-
<h2>Take a Moment</h2>
|
351
|
-
<p>
|
352
|
-
Press B or . on your keyboard to pause the presentation. This is helpful when you're on stage and want to take distracting slides off the screen.
|
353
|
-
</p>
|
354
|
-
</section>
|
355
|
-
|
356
|
-
<section>
|
357
|
-
<h2>Much more</h2>
|
358
|
-
<ul>
|
359
|
-
<li>Right-to-left support</li>
|
360
|
-
<li><a href="https://github.com/hakimel/reveal.js#api">Extensive JavaScript API</a></li>
|
361
|
-
<li><a href="https://github.com/hakimel/reveal.js#auto-sliding">Auto-progression</a></li>
|
362
|
-
<li><a href="https://github.com/hakimel/reveal.js#parallax-background">Parallax backgrounds</a></li>
|
363
|
-
<li><a href="https://github.com/hakimel/reveal.js#keyboard-bindings">Custom keyboard bindings</a></li>
|
364
|
-
</ul>
|
365
|
-
</section>
|
366
|
-
|
367
|
-
<section style="text-align: left;">
|
368
|
-
<h1>THE END</h1>
|
369
|
-
<p>
|
370
|
-
- <a href="http://slides.com">Try the online editor</a> <br>
|
371
|
-
- <a href="https://github.com/hakimel/reveal.js">Source code & documentation</a>
|
372
|
-
</p>
|
373
|
-
</section>
|
374
|
-
|
27
|
+
<section>Slide 1</section>
|
28
|
+
<section>Slide 2</section>
|
375
29
|
</div>
|
376
|
-
|
377
30
|
</div>
|
378
31
|
|
379
32
|
<script src="lib/js/head.min.js"></script>
|
380
33
|
<script src="js/reveal.js"></script>
|
381
34
|
|
382
35
|
<script>
|
383
|
-
|
384
|
-
//
|
385
|
-
// https://github.com/hakimel/reveal.js#
|
36
|
+
// More info about config & dependencies:
|
37
|
+
// - https://github.com/hakimel/reveal.js#configuration
|
38
|
+
// - https://github.com/hakimel/reveal.js#dependencies
|
386
39
|
Reveal.initialize({
|
387
|
-
controls: true,
|
388
|
-
progress: true,
|
389
|
-
history: true,
|
390
|
-
center: true,
|
391
|
-
|
392
|
-
transition: 'slide', // none/fade/slide/convex/concave/zoom
|
393
|
-
|
394
|
-
// Optional reveal.js plugins
|
395
40
|
dependencies: [
|
396
|
-
{ src: '
|
397
|
-
{ src: 'plugin/markdown/
|
398
|
-
{ src: 'plugin/
|
399
|
-
{ src: 'plugin/highlight/highlight.js', async: true,
|
400
|
-
{ src: 'plugin/zoom-js/zoom.js', async: true },
|
401
|
-
{ src: 'plugin/notes/notes.js', async: true }
|
41
|
+
{ src: 'plugin/markdown/marked.js' },
|
42
|
+
{ src: 'plugin/markdown/markdown.js' },
|
43
|
+
{ src: 'plugin/notes/notes.js', async: true },
|
44
|
+
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
|
402
45
|
]
|
403
46
|
});
|
404
|
-
|
405
47
|
</script>
|
406
|
-
|
407
48
|
</body>
|
408
49
|
</html>
|