123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>reveal.js - Auto Animate</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/black.css" id="theme" />
- <link rel="stylesheet" href="../dist/plugin/highlight/monokai.css" />
- </head>
- <body>
- <div class="reveal">
- <div class="slides">
- <section data-auto-animate data-auto-animate-unmatched="fade">
- <h3>Auto-Animate Example</h3>
- <p>This will fade out</p>
- <img src="assets/image1.png" style="height: 100px" />
- <pre data-id="code"><code data-line-numbers class="hljs" data-trim>
- function Example() {
- const [count, setCount] = useState(0);
- }
- </code></pre>
- </section>
- <section data-auto-animate data-auto-animate-unmatched="fade">
- <h3>Auto-Animate Example</h3>
- <p style="opacity: 0.2; margin-top: 100px">This will fade out</p>
- <p>This element is unmatched</p>
- <img src="assets/image1.png" style="height: 150px" />
- <pre data-id="code"><code data-line-numbers class="hljs" data-trim>
- function Example() {
- New line!
- const [count, setCount] = useState(0);
- }
- </code></pre>
- </section>
- <section data-auto-animate>
- <p data-id="text-props" style="background: #555; line-height: 1em; letter-spacing: 0em">
- Line Height & Letter Spacing
- </p>
- </section>
- <section data-auto-animate>
- <p data-id="text-props" style="background: #555; line-height: 3em; letter-spacing: 0.2em">
- Line Height & Letter Spacing
- </p>
- </section>
- <section>
- <section data-auto-animate>
- <pre data-id="code"><code data-line-numbers class="hljs" data-trim>
- import React, { useState } from 'react';
- function Example() {
- const [count, setCount] = useState(0);
- return (
- ...
- );
- }
- </code></pre>
- </section>
- <section data-auto-animate>
- <pre data-id="code"><code data-line-numbers class="hljs" data-trim>
- function Example() {
- const [count, setCount] = useState(0);
- return (
- <div>
- <p>You clicked {count} times</p>
- <button onClick={() => setCount(count + 1)}>
- Click me
- </button>
- </div>
- );
- }
- </code></pre>
- </section>
- <section data-auto-animate>
- <pre data-id="code"><code data-line-numbers class="hljs" data-trim>
- function Example() {
- // A comment!
- const [count, setCount] = useState(0);
- return (
- <div>
- <p>You clicked {count} times</p>
- <button onClick={() => setCount(count + 1)}>
- Click me
- </button>
- </div>
- );
- }
- </code></pre>
- </section>
- </section>
- <section>
- <section data-auto-animate>
- <h3>Swapping list items</h3>
- <ul>
- <li>One</li>
- <li>Two</li>
- <li>Three</li>
- </ul>
- </section>
- <section data-auto-animate>
- <h3>Swapping list items</h3>
- <ul>
- <li>Two</li>
- <li>One</li>
- <li>Three</li>
- </ul>
- </section>
- <section data-auto-animate>
- <h3>Swapping list items</h3>
- <ul>
- <li>Two</li>
- <li>Three</li>
- <li>One</li>
- </ul>
- </section>
- </section>
- <section data-auto-animate style="height: 600px">
- <h3 style="opacity: 0.3; font-size: 18px">SLIDE 1</h3>
- <h2 data-id="title" style="margin-top: 260px">Animate Anything</h2>
- <div
- data-id="1"
- style="
- background: white;
- position: absolute;
- top: 150px;
- left: 16%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="2"
- style="
- background: white;
- position: absolute;
- top: 150px;
- left: 36%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="3"
- style="
- background: white;
- position: absolute;
- top: 150px;
- left: 56%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="4"
- style="
- background: white;
- position: absolute;
- top: 150px;
- left: 76%;
- width: 60px;
- height: 60px;
- "
- ></div>
- </section>
- <section data-auto-animate style="height: 600px">
- <h3 style="opacity: 0.3; font-size: 18px">SLIDE 2</h3>
- <h2 data-id="title" style="margin-top: 500px">With Auto Animate</h2>
- <div
- data-id="1"
- style="
- background: cyan;
- position: absolute;
- bottom: 190px;
- left: 16%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="2"
- style="
- background: magenta;
- position: absolute;
- bottom: 190px;
- left: 36%;
- width: 60px;
- height: 160px;
- "
- ></div>
- <div
- data-id="3"
- style="
- background: yellow;
- position: absolute;
- bottom: 190px;
- left: 56%;
- width: 60px;
- height: 260px;
- "
- ></div>
- <div
- data-id="4"
- style="
- background: red;
- position: absolute;
- bottom: 190px;
- left: 76%;
- width: 60px;
- height: 360px;
- "
- ></div>
- </section>
- <section data-auto-animate style="height: 600px">
- <h3 style="opacity: 0.3; font-size: 18px">SLIDE 3</h3>
- <h2 data-id="title" style="margin-top: 500px; opacity: 0">With Auto Animate</h2>
- <div
- data-id="1"
- style="
- background: cyan;
- position: absolute;
- top: 50%;
- left: 50%;
- width: 400px;
- height: 400px;
- margin: -200px 0 0 -200px;
- border-radius: 400px;
- "
- ></div>
- <div
- data-id="2"
- style="
- background: magenta;
- position: absolute;
- top: 50%;
- left: 50%;
- width: 300px;
- height: 300px;
- margin: -150px 0 0 -150px;
- border-radius: 400px;
- "
- ></div>
- <div
- data-id="3"
- style="
- background: yellow;
- position: absolute;
- top: 50%;
- left: 50%;
- width: 200px;
- height: 200px;
- margin: -100px 0 0 -100px;
- border-radius: 400px;
- "
- ></div>
- <div
- data-id="4"
- style="
- background: red;
- position: absolute;
- top: 50%;
- left: 50%;
- width: 100px;
- height: 100px;
- margin: -50px 0 0 -50px;
- border-radius: 400px;
- "
- ></div>
- </section>
- <section data-auto-animate style="height: 600px">
- <h3 style="opacity: 0.3; font-size: 18px">SLIDE 3</h3>
- <h2 data-id="title" style="margin-top: 500px; opacity: 0">With Auto Animate</h2>
- <div
- data-id="1"
- style="
- background: red;
- position: absolute;
- top: 250px;
- left: 16%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="2"
- style="
- background: yellow;
- position: absolute;
- top: 250px;
- left: 36%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="3"
- style="
- background: magenta;
- position: absolute;
- top: 250px;
- left: 56%;
- width: 60px;
- height: 60px;
- "
- ></div>
- <div
- data-id="4"
- style="
- background: cyan;
- position: absolute;
- top: 250px;
- left: 76%;
- width: 60px;
- height: 60px;
- "
- ></div>
- </section>
- <section data-auto-animate data-auto-animate-id="a">
- <h2>data-auto-animate-id="a"</h2>
- <h3>A1</h3>
- </section>
- <section data-auto-animate data-auto-animate-id="a">
- <h2>data-auto-animate-id="a"</h2>
- <h3>A1</h3>
- <h3>A2</h3>
- </section>
- <section data-auto-animate data-auto-animate-id="b">
- <h2>data-auto-animate-id="b"</h2>
- <h3>B1</h3>
- </section>
- <section data-auto-animate data-auto-animate-id="b">
- <h2>data-auto-animate-id="b"</h2>
- <h3>B1</h3>
- <h3>B2</h3>
- </section>
- <section>
- <section id="stacked-slide-1" data-auto-animate>
- <a href="#/stacked-slide-1">Slide 1</a><br />
- <a href="#/stacked-slide-2">Slide 2</a><br />
- <a href="#/stacked-slide-3">Slide 3</a><br />
- <a href="#/stacked-slide-4">Slide 4</a><br />
- <div
- data-id="anim"
- style="
- background: indigo;
- padding: 8px;
- width: 50px;
- height: 50px;
- position: absolute;
- left: 0px;
- "
- >
- A
- </div>
- </section>
- <section id="stacked-slide-2" data-auto-animate>
- <a href="#/stacked-slide-1">Slide 1</a><br />
- <a href="#/stacked-slide-2">Slide 2</a><br />
- <a href="#/stacked-slide-3">Slide 3</a><br />
- <a href="#/stacked-slide-4">Slide 4</a><br />
- <div
- data-id="anim"
- style="
- background: indigo;
- padding: 8px;
- width: 50px;
- height: 50px;
- position: absolute;
- left: 25%;
- "
- >
- A
- </div>
- </section>
- <section id="stacked-slide-3" data-auto-animate>
- <a href="#/stacked-slide-1">Slide 1</a><br />
- <a href="#/stacked-slide-2">Slide 2</a><br />
- <a href="#/stacked-slide-3">Slide 3</a><br />
- <a href="#/stacked-slide-4">Slide 4</a><br />
- <div
- data-id="anim"
- style="
- background: indigo;
- padding: 8px;
- width: 50px;
- height: 50px;
- position: absolute;
- left: 50%;
- "
- >
- A
- </div>
- </section>
- <section id="stacked-slide-4" data-auto-animate>
- <a href="#/stacked-slide-1">Slide 1</a><br />
- <a href="#/stacked-slide-2">Slide 2</a><br />
- <a href="#/stacked-slide-3">Slide 3</a><br />
- <a href="#/stacked-slide-4">Slide 4</a><br />
- <div
- data-id="anim"
- style="
- background: indigo;
- padding: 8px;
- width: 50px;
- height: 50px;
- position: absolute;
- left: 75%;
- "
- >
- A
- </div>
- </section>
- </section>
- </div>
- </div>
- <script src="../dist/reveal.js"></script>
- <script src="../dist/plugin/highlight.js"></script>
- <script>
- Reveal.initialize({
- center: true,
- hash: true,
- plugins: [RevealHighlight],
- });
- </script>
- </body>
- </html>
|