2023-05-23 19:50:14 +02:00
|
|
|
<!DOCTYPE html>
|
2020-04-16 16:04:26 +02:00
|
|
|
<html lang="en">
|
2023-05-23 19:50:14 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<title>reveal.js - Multiple Presentations</title>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
|
|
/>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<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>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<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>
|
2020-04-23 10:54:48 +02:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
function Example() {
|
|
|
|
const [count, setCount] = useState(0);
|
|
|
|
}
|
|
|
|
</code></pre>
|
2023-05-23 19:50:14 +02:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<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
|
2020-05-11 09:15:02 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
- 1
|
|
|
|
- 2
|
|
|
|
- 3
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h3>The Lorenz Equations</h3>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
\[\begin{aligned} \dot{x} & = \sigma(y-x) \\ \dot{y} & =
|
|
|
|
\rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{aligned} \]
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<style>
|
|
|
|
.reveal {
|
|
|
|
border: 4px solid #ccc;
|
|
|
|
}
|
|
|
|
.reveal.focused {
|
|
|
|
border-color: #94b5ff;
|
|
|
|
}
|
|
|
|
</style>
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
<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();
|
2020-04-16 16:04:26 +02:00
|
|
|
|
2023-05-23 19:50:14 +02:00
|
|
|
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>
|
2020-04-16 16:04:26 +02:00
|
|
|
</html>
|