From a91b3874e7454f88712396054920423a68987377 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Fri, 9 Apr 2021 19:13:04 +0200
Subject: Initial
---
examples/auto-animate.html | 176 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 176 insertions(+)
create mode 100644 examples/auto-animate.html
(limited to 'examples/auto-animate.html')
diff --git a/examples/auto-animate.html b/examples/auto-animate.html
new file mode 100644
index 0000000..4af405f
--- /dev/null
+++ b/examples/auto-animate.html
@@ -0,0 +1,176 @@
+
+
+
+
+
+
+ reveal.js - Auto Animate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Auto-Animate Example
+ This will fade out
+
+
+ function Example() {
+ const [count, setCount] = useState(0);
+ }
+
+
+
+ Auto-Animate Example
+ This will fade out
+ This element is unmatched
+
+
+ function Example() {
+ New line!
+ const [count, setCount] = useState(0);
+ }
+
+
+
+
+ Line Height & Letter Spacing
+
+
+ Line Height & Letter Spacing
+
+
+
+
+
+ import React, { useState } from 'react';
+
+ function Example() {
+ const [count, setCount] = useState(0);
+
+ return (
+ ...
+ );
+ }
+
+
+
+
+ function Example() {
+ const [count, setCount] = useState(0);
+
+ return (
+ <div>
+ <p>You clicked {count} times</p>
+ <button onClick={() => setCount(count + 1)}>
+ Click me
+ </button>
+ </div>
+ );
+ }
+
+
+
+
+ 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>
+ );
+ }
+
+
+
+
+
+
+ Swapping list items
+
+
+
+ Swapping list items
+
+
+
+ Swapping list items
+
+
+
+
+
+ SLIDE 1
+ Animate Anything
+
+
+
+
+
+
+ SLIDE 2
+ With Auto Animate
+
+
+
+
+
+
+ SLIDE 3
+ With Auto Animate
+
+
+
+
+
+
+ SLIDE 3
+ With Auto Animate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
--
cgit v1.2.3