aboutsummaryrefslogtreecommitdiff
path: root/test/examples
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-08-23 14:57:11 -0400
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-08-23 14:57:11 -0400
commit2440e19fab82f8b4bc17e48162bf00290e99117d (patch)
tree346d89568554e0a1b600c68e882a03dd5b34503e /test/examples
parenta0501a30b23c953e1195f882cabfb7ec27c1bfcf (diff)
downloadfosdem-2018-presentation-2440e19fab82f8b4bc17e48162bf00290e99117d.tar
fosdem-2018-presentation-2440e19fab82f8b4bc17e48162bf00290e99117d.tar.gz
move examples into test/
Diffstat (limited to 'test/examples')
-rw-r--r--test/examples/assets/image1.pngbin0 -> 21991 bytes
-rw-r--r--test/examples/assets/image2.pngbin0 -> 10237 bytes
-rw-r--r--test/examples/barebones.html42
-rw-r--r--test/examples/embedded-media.html49
-rw-r--r--test/examples/math.html185
-rw-r--r--test/examples/slide-backgrounds.html101
6 files changed, 377 insertions, 0 deletions
diff --git a/test/examples/assets/image1.png b/test/examples/assets/image1.png
new file mode 100644
index 0000000..8747594
--- /dev/null
+++ b/test/examples/assets/image1.png
Binary files differ
diff --git a/test/examples/assets/image2.png b/test/examples/assets/image2.png
new file mode 100644
index 0000000..6c403a0
--- /dev/null
+++ b/test/examples/assets/image2.png
Binary files differ
diff --git a/test/examples/barebones.html b/test/examples/barebones.html
new file mode 100644
index 0000000..5c03ff3
--- /dev/null
+++ b/test/examples/barebones.html
@@ -0,0 +1,42 @@
+<!doctype html>
+<html lang="en">
+
+ <head>
+ <meta charset="utf-8">
+
+ <title>reveal.js - Barebones</title>
+
+ <link rel="stylesheet" href="../../css/reveal.min.css">
+ </head>
+
+ <body>
+
+ <div class="reveal">
+
+ <div class="slides">
+
+ <section>
+ <h2>Barebones Presentation</h2>
+ <p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>
+ </section>
+
+ <section>
+ <h2>No Theme</h2>
+ <p>There's no theme included, so it will fall back on browser defaults.</p>
+ </section>
+
+ </div>
+
+ </div>
+
+ <script src="../../lib/js/head.min.js"></script>
+ <script src="../../js/reveal.min.js"></script>
+
+ <script>
+
+ Reveal.initialize();
+
+ </script>
+
+ </body>
+</html>
diff --git a/test/examples/embedded-media.html b/test/examples/embedded-media.html
new file mode 100644
index 0000000..c654278
--- /dev/null
+++ b/test/examples/embedded-media.html
@@ -0,0 +1,49 @@
+<!doctype html>
+<html lang="en">
+
+ <head>
+ <meta charset="utf-8">
+
+ <title>reveal.js - Embedded Media</title>
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+
+ <link rel="stylesheet" href="../../css/reveal.min.css">
+ <link rel="stylesheet" href="../../css/theme/default.css" id="theme">
+ </head>
+
+ <body>
+
+ <div class="reveal">
+
+ <div class="slides">
+
+ <section>
+ <h2>Embedded Media Test</h2>
+ </section>
+
+ <section>
+ <iframe data-autoplay width="420" height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c"></iframe>
+ </section>
+
+ <section>
+ <h2>Empty Slide</h2>
+ </section>
+
+ </div>
+
+ </div>
+
+ <script src="../../lib/js/head.min.js"></script>
+ <script src="../../js/reveal.min.js"></script>
+
+ <script>
+
+ Reveal.initialize({
+ transition: 'linear'
+ });
+
+ </script>
+
+ </body>
+</html>
diff --git a/test/examples/math.html b/test/examples/math.html
new file mode 100644
index 0000000..93eff22
--- /dev/null
+++ b/test/examples/math.html
@@ -0,0 +1,185 @@
+<!doctype html>
+<html lang="en">
+
+ <head>
+ <meta charset="utf-8">
+
+ <title>reveal.js - Math Plugin</title>
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+
+ <link rel="stylesheet" href="../../css/reveal.min.css">
+ <link rel="stylesheet" href="../../css/theme/night.css" id="theme">
+ </head>
+
+ <body>
+
+ <div class="reveal">
+
+ <div class="slides">
+
+ <section>
+ <h2>reveal.js Math Plugin</h2>
+ <p>A thin wrapper for MathJax</p>
+ </section>
+
+ <section>
+ <h3>The Lorenz Equations</h3>
+
+ \[\begin{aligned}
+ \dot{x} &amp; = \sigma(y-x) \\
+ \dot{y} &amp; = \rho x - y - xz \\
+ \dot{z} &amp; = -\beta z + xy
+ \end{aligned} \]
+ </section>
+
+ <section>
+ <h3>The Cauchy-Schwarz Inequality</h3>
+
+ <script type="math/tex; mode=display">
+ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
+ </script>
+ </section>
+
+ <section>
+ <h3>A Cross Product Formula</h3>
+
+ \[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
+ \mathbf{i} &amp; \mathbf{j} &amp; \mathbf{k} \\
+ \frac{\partial X}{\partial u} &amp; \frac{\partial Y}{\partial u} &amp; 0 \\
+ \frac{\partial X}{\partial v} &amp; \frac{\partial Y}{\partial v} &amp; 0
+ \end{vmatrix} \]
+ </section>
+
+ <section>
+ <h3>The probability of getting \(k\) heads when flipping \(n\) coins is</h3>
+
+ \[P(E) = {n \choose k} p^k (1-p)^{ n-k} \]
+ </section>
+
+ <section>
+ <h3>An Identity of Ramanujan</h3>
+
+ \[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
+ 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
+ {1+\frac{e^{-8\pi}} {1+\ldots} } } } \]
+ </section>
+
+ <section>
+ <h3>A Rogers-Ramanujan Identity</h3>
+
+ \[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots =
+ \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\]
+ </section>
+
+ <section>
+ <h3>Maxwell&#8217;s Equations</h3>
+
+ \[ \begin{aligned}
+ \nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} &amp; = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} &amp; = 4 \pi \rho \\
+ \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} &amp; = \vec{\mathbf{0}} \\
+ \nabla \cdot \vec{\mathbf{B}} &amp; = 0 \end{aligned}
+ \]
+ </section>
+
+ <section>
+ <section>
+ <h3>The Lorenz Equations</h3>
+
+ <div class="fragment">
+ \[\begin{aligned}
+ \dot{x} &amp; = \sigma(y-x) \\
+ \dot{y} &amp; = \rho x - y - xz \\
+ \dot{z} &amp; = -\beta z + xy
+ \end{aligned} \]
+ </div>
+ </section>
+
+ <section>
+ <h3>The Cauchy-Schwarz Inequality</h3>
+
+ <div class="fragment">
+ \[ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) \]
+ </div>
+ </section>
+
+ <section>
+ <h3>A Cross Product Formula</h3>
+
+ <div class="fragment">
+ \[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
+ \mathbf{i} &amp; \mathbf{j} &amp; \mathbf{k} \\
+ \frac{\partial X}{\partial u} &amp; \frac{\partial Y}{\partial u} &amp; 0 \\
+ \frac{\partial X}{\partial v} &amp; \frac{\partial Y}{\partial v} &amp; 0
+ \end{vmatrix} \]
+ </div>
+ </section>
+
+ <section>
+ <h3>The probability of getting \(k\) heads when flipping \(n\) coins is</h3>
+
+ <div class="fragment">
+ \[P(E) = {n \choose k} p^k (1-p)^{ n-k} \]
+ </div>
+ </section>
+
+ <section>
+ <h3>An Identity of Ramanujan</h3>
+
+ <div class="fragment">
+ \[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
+ 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
+ {1+\frac{e^{-8\pi}} {1+\ldots} } } } \]
+ </div>
+ </section>
+
+ <section>
+ <h3>A Rogers-Ramanujan Identity</h3>
+
+ <div class="fragment">
+ \[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots =
+ \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\]
+ </div>
+ </section>
+
+ <section>
+ <h3>Maxwell&#8217;s Equations</h3>
+
+ <div class="fragment">
+ \[ \begin{aligned}
+ \nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} &amp; = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} &amp; = 4 \pi \rho \\
+ \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} &amp; = \vec{\mathbf{0}} \\
+ \nabla \cdot \vec{\mathbf{B}} &amp; = 0 \end{aligned}
+ \]
+ </div>
+ </section>
+ </section>
+
+ </div>
+
+ </div>
+
+ <script src="../../lib/js/head.min.js"></script>
+ <script src="../../js/reveal.min.js"></script>
+
+ <script>
+
+ Reveal.initialize({
+ history: true,
+ transition: 'linear',
+
+ math: {
+ // mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',
+ config: 'TeX-AMS_HTML-full'
+ },
+
+ dependencies: [
+ { src: '../../lib/js/classList.js' },
+ { src: '../../plugin/math/math.js', async: true }
+ ]
+ });
+
+ </script>
+
+ </body>
+</html>
diff --git a/test/examples/slide-backgrounds.html b/test/examples/slide-backgrounds.html
new file mode 100644
index 0000000..1e2da16
--- /dev/null
+++ b/test/examples/slide-backgrounds.html
@@ -0,0 +1,101 @@
+<!doctype html>
+<html lang="en">
+
+ <head>
+ <meta charset="utf-8">
+
+ <title>reveal.js - Slide Backgrounds</title>
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+
+ <link rel="stylesheet" href="../../css/reveal.min.css">
+ <link rel="stylesheet" href="../../css/theme/serif.css" id="theme">
+ </head>
+
+ <body>
+
+ <div class="reveal">
+
+ <div class="slides">
+
+ <section data-background="#00ffff">
+ <h2>data-background: #00ffff</h2>
+ </section>
+
+ <section data-background="#bb00bb">
+ <h2>data-background: #bb00bb</h2>
+ </section>
+
+ <section>
+ <section data-background="#ff0000">
+ <h2>data-background: #ff0000</h2>
+ </section>
+ <section data-background="rgba(0, 0, 0, 0.2)">
+ <h2>data-background: rgba(0, 0, 0, 0.2)</h2>
+ </section>
+ <section data-background="salmon">
+ <h2>data-background: salmon</h2>
+ </section>
+ </section>
+
+ <section data-background="rgba(0, 100, 100, 0.2)">
+ <section>
+ <h2>Background applied to stack</h2>
+ </section>
+ <section>
+ <h2>Background applied to stack</h2>
+ </section>
+ <section data-background="rgba(100, 0, 0, 0.2)">
+ <h2>Background applied to slide inside of stack</h2>
+ </section>
+ </section>
+
+ <section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)">
+ <h2>Background image</h2>
+ </section>
+
+ <section>
+ <section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)">
+ <h2>Background image</h2>
+ </section>
+ <section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)">
+ <h2>Background image</h2>
+ </section>
+ </section>
+
+ <section data-background="assets/image2.png" data-background-size="100px" data-background-repeat="repeat" data-background-color="#111" style="background: rgba(255,255,255,0.9)">
+ <h2>Background image</h2>
+ <pre>data-background-size="100px" data-background-repeat="repeat" data-background-color="#111"</pre>
+ </section>
+
+ <section data-background="#888888">
+ <h2>Same background twice (1/2)</h2>
+ </section>
+ <section data-background="#888888">
+ <h2>Same background twice (2/2)</h2>
+ </section>
+
+ </div>
+
+ </div>
+
+ <script src="../../lib/js/head.min.js"></script>
+ <script src="../../js/reveal.min.js"></script>
+
+ <script>
+
+ // Full list of configuration options available here:
+ // https://github.com/hakimel/reveal.js#configuration
+ Reveal.initialize({
+ center: true,
+ // rtl: true,
+
+ transition: 'linear',
+ // transitionSpeed: 'slow',
+ // backgroundTransition: 'linear'
+ });
+
+ </script>
+
+ </body>
+</html>