App-revealup

 view release on metacpan or  search on metacpan

share/revealjs/examples/multiple-presentations.html  view on Meta::CPAN

<!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;



( run in 1.208 second using v1.01-cache-2.11-cpan-d8267643d1d )