summaryrefslogtreecommitdiff
path: root/2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2024-06-24 13:49:08 -0400
committerDavid Thompson <dthompson2@worcester.edu>2024-06-24 13:52:17 -0400
commitd283f7e661e14d6ae1881fe803e5b4f1ed0689ff (patch)
tree84d3811c6dcb7d7f02aecadad7b2dfacce83bd4f /2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html
parent3d9dcd3099fb252fa35697148fbbd541eb9eecc9 (diff)
Add 2024 Guix social talk.HEADmaster
Diffstat (limited to '2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html')
-rw-r--r--2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html102
1 files changed, 102 insertions, 0 deletions
diff --git a/2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html b/2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html
new file mode 100644
index 0000000..e5347d4
--- /dev/null
+++ b/2024-06-18-guix-social/reveal.js/examples/multiple-presentations.html
@@ -0,0 +1,102 @@
+<!doctype html>
+<html lang="en">
+
+ <head>
+ <meta charset="utf-8">
+
+ <title>reveal.js - Multiple Presentations</title>
+
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+
+ <link rel="stylesheet" href="../dist/reveal.css">
+ <link rel="stylesheet" href="../dist/theme/white.css" id="theme">
+ <link rel="stylesheet" href="../plugin/highlight/monokai.css">
+ </head>
+
+ <body style="background: #ddd;">
+
+ <div style="display: flex; flex-direction: row;">
+ <div class="reveal deck1" style="width: 100%; height: 50vh; margin: 10px;">
+ <div class="slides">
+ <section>Deck 1, Slide 1</section>
+ <section>Deck 1, Slide 2</section>
+ <section>
+ <pre data-id="code-animation"><code class="hljs" data-trim data-line-numbers>
+ import React, { useState } from 'react';
+ function Example() {
+ const [count, setCount] = useState(0);
+ }
+ </code></pre>
+ </section>
+ </div>
+ </div>
+
+ <div class="reveal deck2" style="width: 100%; height: 50vh; margin: 10px;">
+ <div class="slides">
+ <section>Deck 2, Slide 1</section>
+ <section>Deck 2, Slide 2</section>
+ <section data-markdown>
+ <script type="text/template">
+ ## Markdown plugin
+
+ - 1
+ - 2
+ - 3
+ </script>
+ </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>
+ </div>
+ </div>
+ </div>
+
+ <style>
+ .reveal {
+ border: 4px solid #ccc;
+ }
+ .reveal.focused {
+ border-color: #94b5ff;
+ }
+ </style>
+
+ <script src="../dist/reveal.js"></script>
+ <script src="../plugin/highlight/highlight.js"></script>
+ <script src="../plugin/markdown/markdown.js"></script>
+ <script src="../plugin/math/math.js"></script>
+ <script>
+
+ let deck1 = new Reveal( document.querySelector( '.deck1' ), {
+ embedded: true,
+ progress: false,
+ keyboardCondition: 'focused',
+ plugins: [ RevealHighlight ]
+ } );
+ deck1.on( 'slidechanged', () => {
+ console.log( 'Deck 1 slide changed' );
+ } );
+ deck1.initialize();
+
+ let deck2 = new Reveal( document.querySelector( '.deck2' ), {
+ embedded: true,
+ progress: false,
+ keyboardCondition: 'focused',
+ plugins: [ RevealMarkdown, RevealMath ]
+ } );
+ deck2.initialize().then( () => {
+ deck2.slide(1);
+ } );
+ deck2.on( 'slidechanged', () => {
+ console.log( 'Deck 2 slide changed' );
+ } );
+
+ </script>
+
+ </body>
+</html>