reveal.rb 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +2 -1
  4. data/Dockerfile +4 -0
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +7 -1
  7. data/README.md +1 -1
  8. data/lib/reveal/command.rb +9 -3
  9. data/lib/reveal/templates/revealjs/css/print/paper.css +4 -3
  10. data/lib/reveal/templates/revealjs/css/print/pdf.css +59 -38
  11. data/lib/reveal/templates/revealjs/css/reveal.css +654 -274
  12. data/lib/reveal/templates/revealjs/css/theme/beige.css +65 -68
  13. data/lib/reveal/templates/revealjs/css/theme/black.css +58 -61
  14. data/lib/reveal/templates/revealjs/css/theme/blood.css +64 -62
  15. data/lib/reveal/templates/revealjs/css/theme/league.css +59 -62
  16. data/lib/reveal/templates/revealjs/css/theme/moon.css +59 -62
  17. data/lib/reveal/templates/revealjs/css/theme/night.css +58 -61
  18. data/lib/reveal/templates/revealjs/css/theme/serif.css +56 -59
  19. data/lib/reveal/templates/revealjs/css/theme/simple.css +60 -60
  20. data/lib/reveal/templates/revealjs/css/theme/sky.css +59 -62
  21. data/lib/reveal/templates/revealjs/css/theme/solarized.css +59 -62
  22. data/lib/reveal/templates/revealjs/css/theme/white.css +59 -62
  23. data/lib/reveal/templates/revealjs/index.html +14 -376
  24. data/lib/reveal/templates/revealjs/js/reveal.js +1073 -342
  25. data/lib/reveal/templates/revealjs/lib/css/zenburn.css +41 -78
  26. data/lib/reveal/templates/revealjs/lib/js/head.min.js +9 -8
  27. data/lib/reveal/templates/revealjs/plugin/highlight/highlight.js +51 -4
  28. data/lib/reveal/templates/revealjs/plugin/markdown/markdown.js +38 -19
  29. data/lib/reveal/templates/revealjs/plugin/markdown/marked.js +1 -1
  30. data/lib/reveal/templates/revealjs/plugin/math/math.js +5 -2
  31. data/lib/reveal/templates/revealjs/plugin/multiplex/client.js +1 -1
  32. data/lib/reveal/templates/revealjs/plugin/multiplex/index.js +24 -16
  33. data/lib/reveal/templates/revealjs/plugin/multiplex/master.js +26 -43
  34. data/lib/reveal/templates/revealjs/plugin/multiplex/package.json +19 -0
  35. data/lib/reveal/templates/revealjs/plugin/notes/notes.html +385 -32
  36. data/lib/reveal/templates/revealjs/plugin/notes/notes.js +39 -6
  37. data/lib/reveal/templates/revealjs/plugin/notes-server/client.js +6 -1
  38. data/lib/reveal/templates/revealjs/plugin/notes-server/index.js +17 -14
  39. data/lib/reveal/templates/revealjs/plugin/notes-server/notes.html +215 -26
  40. data/lib/reveal/templates/revealjs/plugin/print-pdf/print-pdf.js +48 -27
  41. data/lib/reveal/templates/revealjs/plugin/search/search.js +41 -31
  42. data/lib/reveal/templates/revealjs/plugin/zoom-js/zoom.js +17 -23
  43. data/lib/reveal/templates/template.html +12 -41
  44. data/lib/reveal/version.rb +1 -1
  45. data/spec/lib/reveal/command_spec.rb +37 -0
  46. metadata +14 -16
  47. data/lib/reveal/templates/revealjs/lib/font/league-gothic/LICENSE +0 -2
  48. data/lib/reveal/templates/revealjs/lib/font/source-sans-pro/LICENSE +0 -45
  49. data/lib/reveal/templates/revealjs/plugin/leap/leap.js +0 -159
  50. data/lib/reveal/templates/revealjs/plugin/remotes/remotes.js +0 -39
@@ -1,9 +1,9 @@
1
- @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
2
1
  /**
3
2
  * White theme for reveal.js. This is the opposite of the 'black' theme.
4
3
  *
5
- * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
4
+ * By Hakim El Hattab, http://hakim.se
6
5
  */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7
7
  section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
8
8
  color: #fff; }
9
9
 
@@ -15,8 +15,8 @@ body {
15
15
  background-color: #fff; }
16
16
 
17
17
  .reveal {
18
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
19
- font-size: 38px;
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
20
  font-weight: normal;
21
21
  color: #222; }
22
22
 
@@ -25,17 +25,28 @@ body {
25
25
  background: #98bdef;
26
26
  text-shadow: none; }
27
27
 
28
- .reveal .slides > section, .reveal .slides > section > section {
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #98bdef;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
29
35
  line-height: 1.3;
30
36
  font-weight: inherit; }
31
37
 
32
38
  /*********************************************
33
39
  * HEADERS
34
40
  *********************************************/
35
- .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
36
47
  margin: 0 0 20px 0;
37
48
  color: #222;
38
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
39
50
  font-weight: 600;
40
51
  line-height: 1.2;
41
52
  letter-spacing: normal;
@@ -66,17 +77,22 @@ body {
66
77
  line-height: 1.3; }
67
78
 
68
79
  /* Ensure certain elements are never larger than the slide itself */
69
- .reveal img, .reveal video, .reveal iframe {
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
70
83
  max-width: 95%;
71
84
  max-height: 95%; }
72
85
 
73
- .reveal strong, .reveal b {
86
+ .reveal strong,
87
+ .reveal b {
74
88
  font-weight: bold; }
75
89
 
76
90
  .reveal em {
77
91
  font-style: italic; }
78
92
 
79
- .reveal ol, .reveal dl, .reveal ul {
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
80
96
  display: inline-block;
81
97
  text-align: left;
82
98
  margin: 0 0 0 1em; }
@@ -93,7 +109,10 @@ body {
93
109
  .reveal ul ul ul {
94
110
  list-style-type: circle; }
95
111
 
96
- .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
97
116
  display: block;
98
117
  margin-left: 40px; }
99
118
 
@@ -103,9 +122,6 @@ body {
103
122
  .reveal dd {
104
123
  margin-left: 40px; }
105
124
 
106
- .reveal q, .reveal blockquote {
107
- quotes: none; }
108
-
109
125
  .reveal blockquote {
110
126
  display: block;
111
127
  position: relative;
@@ -116,7 +132,8 @@ body {
116
132
  background: rgba(255, 255, 255, 0.05);
117
133
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
118
134
 
119
- .reveal blockquote p:first-child, .reveal blockquote p:last-child {
135
+ .reveal blockquote p:first-child,
136
+ .reveal blockquote p:last-child {
120
137
  display: inline-block; }
121
138
 
122
139
  .reveal q {
@@ -135,16 +152,15 @@ body {
135
152
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
136
153
 
137
154
  .reveal code {
138
- font-family: monospace; }
155
+ font-family: monospace;
156
+ text-transform: none; }
139
157
 
140
158
  .reveal pre code {
141
159
  display: block;
142
160
  padding: 5px;
143
161
  overflow: auto;
144
162
  max-height: 400px;
145
- word-wrap: normal;
146
- background: #3F3F3F;
147
- color: #DCDCDC; }
163
+ word-wrap: normal; }
148
164
 
149
165
  .reveal table {
150
166
  margin: auto;
@@ -154,18 +170,22 @@ body {
154
170
  .reveal table th {
155
171
  font-weight: bold; }
156
172
 
157
- .reveal table th, .reveal table td {
173
+ .reveal table th,
174
+ .reveal table td {
158
175
  text-align: left;
159
176
  padding: 0.2em 0.5em 0.2em 0.5em;
160
177
  border-bottom: 1px solid; }
161
178
 
162
- .reveal table th[align="center"], .reveal table td[align="center"] {
179
+ .reveal table th[align="center"],
180
+ .reveal table td[align="center"] {
163
181
  text-align: center; }
164
182
 
165
- .reveal table th[align="right"], .reveal table td[align="right"] {
183
+ .reveal table th[align="right"],
184
+ .reveal table td[align="right"] {
166
185
  text-align: right; }
167
186
 
168
- .reveal table tr:last-child td {
187
+ .reveal table tbody tr:last-child th,
188
+ .reveal table tbody tr:last-child td {
169
189
  border-bottom: none; }
170
190
 
171
191
  .reveal sup {
@@ -189,18 +209,18 @@ body {
189
209
  .reveal a {
190
210
  color: #2a76dd;
191
211
  text-decoration: none;
192
- -webkit-transition: color 0.15s ease;
193
- -moz-transition: color 0.15s ease;
194
- transition: color 0.15s ease; }
212
+ -webkit-transition: color .15s ease;
213
+ -moz-transition: color .15s ease;
214
+ transition: color .15s ease; }
195
215
 
196
216
  .reveal a:hover {
197
- color: #6ca2e8;
217
+ color: #6ca0e8;
198
218
  text-shadow: none;
199
219
  border: none; }
200
220
 
201
221
  .reveal .roll span:after {
202
222
  color: #fff;
203
- background: #1a54a1; }
223
+ background: #1a53a1; }
204
224
 
205
225
  /*********************************************
206
226
  * IMAGES
@@ -211,10 +231,14 @@ body {
211
231
  border: 4px solid #222;
212
232
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
213
233
 
234
+ .reveal section img.plain {
235
+ border: 0;
236
+ box-shadow: none; }
237
+
214
238
  .reveal a img {
215
- -webkit-transition: all 0.15s linear;
216
- -moz-transition: all 0.15s linear;
217
- transition: all 0.15s linear; }
239
+ -webkit-transition: all .15s linear;
240
+ -moz-transition: all .15s linear;
241
+ transition: all .15s linear; }
218
242
 
219
243
  .reveal a:hover img {
220
244
  background: rgba(255, 255, 255, 0.2);
@@ -224,44 +248,17 @@ body {
224
248
  /*********************************************
225
249
  * NAVIGATION CONTROLS
226
250
  *********************************************/
227
- .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
228
- border-right-color: #2a76dd; }
229
-
230
- .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
231
- border-left-color: #2a76dd; }
232
-
233
- .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
234
- border-bottom-color: #2a76dd; }
235
-
236
- .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
237
- border-top-color: #2a76dd; }
238
-
239
- .reveal .controls div.navigate-left.enabled:hover {
240
- border-right-color: #6ca2e8; }
241
-
242
- .reveal .controls div.navigate-right.enabled:hover {
243
- border-left-color: #6ca2e8; }
244
-
245
- .reveal .controls div.navigate-up.enabled:hover {
246
- border-bottom-color: #6ca2e8; }
247
-
248
- .reveal .controls div.navigate-down.enabled:hover {
249
- border-top-color: #6ca2e8; }
251
+ .reveal .controls {
252
+ color: #2a76dd; }
250
253
 
251
254
  /*********************************************
252
255
  * PROGRESS BAR
253
256
  *********************************************/
254
257
  .reveal .progress {
255
- background: rgba(0, 0, 0, 0.2); }
258
+ background: rgba(0, 0, 0, 0.2);
259
+ color: #2a76dd; }
256
260
 
257
261
  .reveal .progress span {
258
- background: #2a76dd;
259
262
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
260
263
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
261
264
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
262
-
263
- /*********************************************
264
- * SLIDE NUMBER
265
- *********************************************/
266
- .reveal .slide-number {
267
- color: #2a76dd; }
@@ -1,23 +1,15 @@
1
1
  <!doctype html>
2
- <html lang="en">
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 - 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, 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" id="theme">
10
+ <link rel="stylesheet" href="css/theme/black.css">
19
11
 
20
- <!-- Code syntax highlighting -->
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,384 +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
- <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 current-visible">current-visible</p>
143
- <p class="fragment highlight-red">highlight-red</p>
144
- <p class="fragment highlight-blue">highlight-blue</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>&lt;section data-background="image.png"&gt;</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;">&lt;section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"&gt;</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;">&lt;section data-background-video="video.mp4,video.webm"&gt;</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>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 style="word-wrap: break-word;">&lt;section data-background-transition="zoom"&gt;</code></pre>
223
- </section>
224
-
225
- <section>
226
- <h2>Pretty Code</h2>
227
- <pre><code 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 &lt; 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
- &ldquo;The nice thing about standards is that there are so many to choose from&rdquo;</q> and block:
300
- </p>
301
- <blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
302
- &ldquo;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.&rdquo;
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 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>
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 &amp; documentation</a>
375
- </p>
376
- </section>
377
-
27
+ <section>Slide 1</section>
28
+ <section>Slide 2</section>
378
29
  </div>
379
-
380
30
  </div>
381
31
 
382
32
  <script src="lib/js/head.min.js"></script>
383
33
  <script src="js/reveal.js"></script>
384
34
 
385
35
  <script>
386
-
387
- // Full list of configuration options available at:
388
- // https://github.com/hakimel/reveal.js#configuration
36
+ // More info about config & dependencies:
37
+ // - https://github.com/hakimel/reveal.js#configuration
38
+ // - https://github.com/hakimel/reveal.js#dependencies
389
39
  Reveal.initialize({
390
- controls: true,
391
- progress: true,
392
- history: true,
393
- center: true,
394
-
395
- transition: 'slide', // none/fade/slide/convex/concave/zoom
396
-
397
- // Optional reveal.js plugins
398
40
  dependencies: [
399
- { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
400
- { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
401
- { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
402
- { src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
403
- { src: 'plugin/zoom-js/zoom.js', async: true },
404
- { 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(); } }
405
45
  ]
406
46
  });
407
-
408
47
  </script>
409
-
410
48
  </body>
411
49
  </html>