starterlog-theme 1.1.3 → 1.2.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 (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -8
  3. data/_layouts/slide.html +105 -0
  4. data/_pages/profile/index.html +1 -1
  5. data/_pages/start/index.html +7 -2
  6. data/assets/modules/reveal.js/.gitignore +13 -0
  7. data/assets/modules/reveal.js/.travis.yml +5 -0
  8. data/assets/modules/reveal.js/CONTRIBUTING.md +23 -0
  9. data/assets/modules/reveal.js/Gruntfile.js +187 -0
  10. data/assets/modules/reveal.js/LICENSE +19 -0
  11. data/assets/modules/reveal.js/README.md +1185 -0
  12. data/assets/modules/reveal.js/bower.json +27 -0
  13. data/assets/modules/reveal.js/css/print/paper.css +203 -0
  14. data/assets/modules/reveal.js/css/print/pdf.css +171 -0
  15. data/assets/modules/reveal.js/css/reveal.css +1365 -0
  16. data/assets/modules/reveal.js/css/reveal.scss +1446 -0
  17. data/assets/modules/reveal.js/css/theme/README.md +21 -0
  18. data/assets/modules/reveal.js/css/theme/beige.css +296 -0
  19. data/assets/modules/reveal.js/css/theme/black.css +292 -0
  20. data/assets/modules/reveal.js/css/theme/blood.css +315 -0
  21. data/assets/modules/reveal.js/css/theme/league.css +298 -0
  22. data/assets/modules/reveal.js/css/theme/moon.css +296 -0
  23. data/assets/modules/reveal.js/css/theme/night.css +290 -0
  24. data/assets/modules/reveal.js/css/theme/serif.css +292 -0
  25. data/assets/modules/reveal.js/css/theme/simple.css +295 -0
  26. data/assets/modules/reveal.js/css/theme/sky.css +299 -0
  27. data/assets/modules/reveal.js/css/theme/solarized.css +296 -0
  28. data/assets/modules/reveal.js/css/theme/source/beige.scss +39 -0
  29. data/assets/modules/reveal.js/css/theme/source/black.scss +49 -0
  30. data/assets/modules/reveal.js/css/theme/source/blood.scss +78 -0
  31. data/assets/modules/reveal.js/css/theme/source/league.scss +34 -0
  32. data/assets/modules/reveal.js/css/theme/source/moon.scss +57 -0
  33. data/assets/modules/reveal.js/css/theme/source/night.scss +34 -0
  34. data/assets/modules/reveal.js/css/theme/source/serif.scss +35 -0
  35. data/assets/modules/reveal.js/css/theme/source/simple.scss +43 -0
  36. data/assets/modules/reveal.js/css/theme/source/sky.scss +46 -0
  37. data/assets/modules/reveal.js/css/theme/source/solarized.scss +63 -0
  38. data/assets/modules/reveal.js/css/theme/source/white.scss +49 -0
  39. data/assets/modules/reveal.js/css/theme/template/mixins.scss +29 -0
  40. data/assets/modules/reveal.js/css/theme/template/settings.scss +43 -0
  41. data/assets/modules/reveal.js/css/theme/template/theme.scss +352 -0
  42. data/assets/modules/reveal.js/css/theme/white.css +292 -0
  43. data/assets/modules/reveal.js/demo.html +410 -0
  44. data/assets/modules/reveal.js/index.html +50 -0
  45. data/assets/modules/reveal.js/js/reveal.js +4961 -0
  46. data/assets/modules/reveal.js/lib/css/zenburn.css +80 -0
  47. data/assets/modules/reveal.js/lib/font/league-gothic/LICENSE +2 -0
  48. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  49. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  50. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  51. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  52. data/assets/modules/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  53. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  54. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  55. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  56. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  57. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  58. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  59. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  60. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  61. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  62. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  63. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  64. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  65. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  66. data/assets/modules/reveal.js/lib/js/classList.js +2 -0
  67. data/assets/modules/reveal.js/lib/js/head.min.js +9 -0
  68. data/assets/modules/reveal.js/lib/js/html5shiv.js +7 -0
  69. data/assets/modules/reveal.js/package.json +45 -0
  70. data/assets/modules/reveal.js/plugin/highlight/highlight.js +78 -0
  71. data/assets/modules/reveal.js/plugin/markdown/example.html +129 -0
  72. data/assets/modules/reveal.js/plugin/markdown/example.md +31 -0
  73. data/assets/modules/reveal.js/plugin/markdown/markdown.js +411 -0
  74. data/assets/modules/reveal.js/plugin/markdown/marked.js +6 -0
  75. data/assets/modules/reveal.js/plugin/math/math.js +67 -0
  76. data/assets/modules/reveal.js/plugin/multiplex/client.js +13 -0
  77. data/assets/modules/reveal.js/plugin/multiplex/index.js +64 -0
  78. data/assets/modules/reveal.js/plugin/multiplex/master.js +31 -0
  79. data/assets/modules/reveal.js/plugin/multiplex/package.json +19 -0
  80. data/assets/modules/reveal.js/plugin/notes-server/client.js +65 -0
  81. data/assets/modules/reveal.js/plugin/notes-server/index.js +69 -0
  82. data/assets/modules/reveal.js/plugin/notes-server/notes.html +585 -0
  83. data/assets/modules/reveal.js/plugin/notes/notes.html +609 -0
  84. data/assets/modules/reveal.js/plugin/notes/notes.js +145 -0
  85. data/assets/modules/reveal.js/plugin/print-pdf/print-pdf.js +51 -0
  86. data/assets/modules/reveal.js/plugin/search/search.js +196 -0
  87. data/assets/modules/reveal.js/plugin/zoom-js/zoom.js +288 -0
  88. data/assets/modules/reveal.js/test/examples/assets/image1.png +0 -0
  89. data/assets/modules/reveal.js/test/examples/assets/image2.png +0 -0
  90. data/assets/modules/reveal.js/test/examples/barebones.html +41 -0
  91. data/assets/modules/reveal.js/test/examples/embedded-media.html +49 -0
  92. data/assets/modules/reveal.js/test/examples/math.html +185 -0
  93. data/assets/modules/reveal.js/test/examples/slide-backgrounds.html +144 -0
  94. data/assets/modules/reveal.js/test/examples/slide-transitions.html +101 -0
  95. data/assets/modules/reveal.js/test/qunit-1.12.0.css +244 -0
  96. data/assets/modules/reveal.js/test/qunit-1.12.0.js +2212 -0
  97. data/assets/modules/reveal.js/test/simple.md +12 -0
  98. data/assets/modules/reveal.js/test/test-markdown-element-attributes.html +134 -0
  99. data/assets/modules/reveal.js/test/test-markdown-element-attributes.js +46 -0
  100. data/assets/modules/reveal.js/test/test-markdown-external.html +36 -0
  101. data/assets/modules/reveal.js/test/test-markdown-external.js +24 -0
  102. data/assets/modules/reveal.js/test/test-markdown-options.html +41 -0
  103. data/assets/modules/reveal.js/test/test-markdown-options.js +26 -0
  104. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.html +128 -0
  105. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.js +47 -0
  106. data/assets/modules/reveal.js/test/test-markdown.html +52 -0
  107. data/assets/modules/reveal.js/test/test-markdown.js +15 -0
  108. data/assets/modules/reveal.js/test/test-pdf.html +83 -0
  109. data/assets/modules/reveal.js/test/test-pdf.js +15 -0
  110. data/assets/modules/reveal.js/test/test.html +86 -0
  111. data/assets/modules/reveal.js/test/test.js +597 -0
  112. metadata +117 -10
@@ -0,0 +1,292 @@
1
+ /**
2
+ * White theme for reveal.js. This is the opposite of the 'black' theme.
3
+ *
4
+ * By Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
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
+ color: #fff; }
9
+
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #fff;
15
+ background-color: #fff; }
16
+
17
+ .reveal {
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
+ font-weight: normal;
21
+ color: #222; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #98bdef;
26
+ text-shadow: none; }
27
+
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #98bdef;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
35
+ line-height: 1.3;
36
+ font-weight: inherit; }
37
+
38
+ /*********************************************
39
+ * HEADERS
40
+ *********************************************/
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: 0 0 20px 0;
48
+ color: #222;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
50
+ font-weight: 600;
51
+ line-height: 1.2;
52
+ letter-spacing: normal;
53
+ text-transform: uppercase;
54
+ text-shadow: none;
55
+ word-wrap: break-word; }
56
+
57
+ .reveal h1 {
58
+ font-size: 2.5em; }
59
+
60
+ .reveal h2 {
61
+ font-size: 1.6em; }
62
+
63
+ .reveal h3 {
64
+ font-size: 1.3em; }
65
+
66
+ .reveal h4 {
67
+ font-size: 1em; }
68
+
69
+ .reveal h1 {
70
+ text-shadow: none; }
71
+
72
+ /*********************************************
73
+ * OTHER
74
+ *********************************************/
75
+ .reveal p {
76
+ margin: 20px 0;
77
+ line-height: 1.3; }
78
+
79
+ /* Ensure certain elements are never larger than the slide itself */
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
83
+ max-width: 95%;
84
+ max-height: 95%; }
85
+
86
+ .reveal strong,
87
+ .reveal b {
88
+ font-weight: bold; }
89
+
90
+ .reveal em {
91
+ font-style: italic; }
92
+
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
96
+ display: inline-block;
97
+ text-align: left;
98
+ margin: 0 0 0 1em; }
99
+
100
+ .reveal ol {
101
+ list-style-type: decimal; }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc; }
105
+
106
+ .reveal ul ul {
107
+ list-style-type: square; }
108
+
109
+ .reveal ul ul ul {
110
+ list-style-type: circle; }
111
+
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
116
+ display: block;
117
+ margin-left: 40px; }
118
+
119
+ .reveal dt {
120
+ font-weight: bold; }
121
+
122
+ .reveal dd {
123
+ margin-left: 40px; }
124
+
125
+ .reveal q,
126
+ .reveal blockquote {
127
+ quotes: none; }
128
+
129
+ .reveal blockquote {
130
+ display: block;
131
+ position: relative;
132
+ width: 70%;
133
+ margin: 20px auto;
134
+ padding: 5px;
135
+ font-style: italic;
136
+ background: rgba(255, 255, 255, 0.05);
137
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
138
+
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
141
+ display: inline-block; }
142
+
143
+ .reveal q {
144
+ font-style: italic; }
145
+
146
+ .reveal pre {
147
+ display: block;
148
+ position: relative;
149
+ width: 90%;
150
+ margin: 20px auto;
151
+ text-align: left;
152
+ font-size: 0.55em;
153
+ font-family: monospace;
154
+ line-height: 1.2em;
155
+ word-wrap: break-word;
156
+ box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
157
+
158
+ .reveal code {
159
+ font-family: monospace; }
160
+
161
+ .reveal pre code {
162
+ display: block;
163
+ padding: 5px;
164
+ overflow: auto;
165
+ max-height: 400px;
166
+ word-wrap: normal; }
167
+
168
+ .reveal table {
169
+ margin: auto;
170
+ border-collapse: collapse;
171
+ border-spacing: 0; }
172
+
173
+ .reveal table th {
174
+ font-weight: bold; }
175
+
176
+ .reveal table th,
177
+ .reveal table td {
178
+ text-align: left;
179
+ padding: 0.2em 0.5em 0.2em 0.5em;
180
+ border-bottom: 1px solid; }
181
+
182
+ .reveal table th[align="center"],
183
+ .reveal table td[align="center"] {
184
+ text-align: center; }
185
+
186
+ .reveal table th[align="right"],
187
+ .reveal table td[align="right"] {
188
+ text-align: right; }
189
+
190
+ .reveal table tbody tr:last-child th,
191
+ .reveal table tbody tr:last-child td {
192
+ border-bottom: none; }
193
+
194
+ .reveal sup {
195
+ vertical-align: super; }
196
+
197
+ .reveal sub {
198
+ vertical-align: sub; }
199
+
200
+ .reveal small {
201
+ display: inline-block;
202
+ font-size: 0.6em;
203
+ line-height: 1.2em;
204
+ vertical-align: top; }
205
+
206
+ .reveal small * {
207
+ vertical-align: top; }
208
+
209
+ /*********************************************
210
+ * LINKS
211
+ *********************************************/
212
+ .reveal a {
213
+ color: #2a76dd;
214
+ text-decoration: none;
215
+ -webkit-transition: color .15s ease;
216
+ -moz-transition: color .15s ease;
217
+ transition: color .15s ease; }
218
+
219
+ .reveal a:hover {
220
+ color: #6ca0e8;
221
+ text-shadow: none;
222
+ border: none; }
223
+
224
+ .reveal .roll span:after {
225
+ color: #fff;
226
+ background: #1a53a1; }
227
+
228
+ /*********************************************
229
+ * IMAGES
230
+ *********************************************/
231
+ .reveal section img {
232
+ margin: 15px 0px;
233
+ background: rgba(255, 255, 255, 0.12);
234
+ border: 4px solid #222;
235
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
236
+
237
+ .reveal section img.plain {
238
+ border: 0;
239
+ box-shadow: none; }
240
+
241
+ .reveal a img {
242
+ -webkit-transition: all .15s linear;
243
+ -moz-transition: all .15s linear;
244
+ transition: all .15s linear; }
245
+
246
+ .reveal a:hover img {
247
+ background: rgba(255, 255, 255, 0.2);
248
+ border-color: #2a76dd;
249
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
250
+
251
+ /*********************************************
252
+ * NAVIGATION CONTROLS
253
+ *********************************************/
254
+ .reveal .controls .navigate-left,
255
+ .reveal .controls .navigate-left.enabled {
256
+ border-right-color: #2a76dd; }
257
+
258
+ .reveal .controls .navigate-right,
259
+ .reveal .controls .navigate-right.enabled {
260
+ border-left-color: #2a76dd; }
261
+
262
+ .reveal .controls .navigate-up,
263
+ .reveal .controls .navigate-up.enabled {
264
+ border-bottom-color: #2a76dd; }
265
+
266
+ .reveal .controls .navigate-down,
267
+ .reveal .controls .navigate-down.enabled {
268
+ border-top-color: #2a76dd; }
269
+
270
+ .reveal .controls .navigate-left.enabled:hover {
271
+ border-right-color: #6ca0e8; }
272
+
273
+ .reveal .controls .navigate-right.enabled:hover {
274
+ border-left-color: #6ca0e8; }
275
+
276
+ .reveal .controls .navigate-up.enabled:hover {
277
+ border-bottom-color: #6ca0e8; }
278
+
279
+ .reveal .controls .navigate-down.enabled:hover {
280
+ border-top-color: #6ca0e8; }
281
+
282
+ /*********************************************
283
+ * PROGRESS BAR
284
+ *********************************************/
285
+ .reveal .progress {
286
+ background: rgba(0, 0, 0, 0.2); }
287
+
288
+ .reveal .progress span {
289
+ background: #2a76dd;
290
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
291
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
292
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
@@ -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">&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 class="hljs" 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 class="hljs" 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 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;">&lt;section data-background-transition="zoom"&gt;</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 &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 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 &amp; 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>