aboutsummaryrefslogtreecommitdiff
path: root/examples/layout-helpers.html
blob: 4e41630dc22ec498506a37c0542988b7695fa3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!doctype html>
<html lang="en">

	<head>
		<meta charset="utf-8">

		<title>reveal.js - Layout Helpers</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>

		<div class="reveal">

			<div class="slides">

				<section>
					<h2>Layout Helper Examples</h2>
					<ul>
						<li><a href="#/fit-text">Big Text</a></li>
						<li><a href="#/stretch">Stretch</a></li>
						<li><a href="#/stack">Stack</a></li>
						<li><a href="#/hstack">HStack</a></li>
						<li><a href="#/vstack">VStack</a></li>
					</ul>
				</section>

				<section id="fit-text">
					<h2>Fit Text</h2>
					<p>Resizes text to be as large as possible within its container.</p>
					<pre><code class="html" data-trim data-line-numbers>
					  <h2 class="r-fit-text">FIT</h2>
					</code></pre>
				</section>

				<section>
					<h2 class="r-fit-text">FIT</h2>
				</section>

				<section>
					<h2 class="r-fit-text">HELLO WORLD</h2>
					<h2 class="r-fit-text">BOTH THESE TITLES USE FIT-TEXT</h2>
				</section>

				<section id="stretch">
					<h2>Stretch</h2>
					<p>Makes an element as tall as possible while remaining within the slide bounds.</p>
					<pre><code class="html" data-trim data-line-numbers>
					  <h2>Stretch Example</h2>
					  <img src="assets/image2.png" class="r-stretch">
					  <p>Image byline</p>
					</code></pre>
				</section>

				<section>
					<h2>Stretch Example</h2>
					<img src="assets/image2.png" class="r-stretch">
					<p>Image byline</p>
				</section>

				<section id="stack">
					<h2>Stack</h2>
					<p>Stacks multiple elements on top of each other, for use with fragments.</p>
					<pre><code class="html" data-trim data-line-numbers>
					  <div class="r-stack">
					    &lt;img class="fragment" width="450" height="300" src="..."&gt;
					    &lt;img class="fragment" width="300" height="450" src="..."&gt;
					    &lt;img class="fragment" width="400" height="400" src="..."&gt;
					  </div>
					</code></pre>
				</section>

				<section>
					<h2>Stack Example</h2>
					<div class="r-stack">
						<p class="fragment fade-in-then-out">One</p>
						<p class="fragment fade-in-then-out">Two</p>
						<p class="fragment fade-in-then-out">Three</p>
						<p class="fragment fade-in-then-out">Four</p>
					</div>
					<div class="r-stack">
						<img src="https://placekitten.com/450/300" width="450" height="300" class="fragment">
						<img src="https://placekitten.com/300/450" width="300" height="450" class="fragment">
						<img src="https://placekitten.com/400/400" width="400" height="400" class="fragment">
					</div>
				</section>

				<section>
					<h2>Stack Example</h2>
					<p>fade-in-then-out fragments</p>
					<div class="r-stack">
						<img src="https://placekitten.com/450/300" width="450" height="300" class="fragment fade-in-then-out">
						<img src="https://placekitten.com/300/450" width="300" height="450" class="fragment fade-in-then-out">
						<img src="https://placekitten.com/400/400" width="400" height="400" class="fragment fade-in-then-out">
					</div>
				</section>

				<section id="hstack">
					<h2>HStack</h2>
					<p>Stacks multiple elements horizontally.</p>
					<pre><code class="html" data-trim data-line-numbers>
					  <div class="r-hstack">
					    &lt;img width="450" height="300" src="..."&gt;
					    &lt;img width="300" height="450" src="..."&gt;
					    &lt;img width="400" height="400" src="..."&gt;
					  </div>
					</code></pre>
				</section>

				<section data-auto-animate>
					<h2>HStack Example</h2>
					<div class="r-hstack">
						<p style="padding: 0.50em; background: #eee; margin: 0.25em">One</p>
						<p style="padding: 0.75em; background: #eee; margin: 0.25em">Two</p>
						<p style="padding: 1.00em; background: #eee; margin: 0.25em">Three</p>
					</div>
				</section>

				<section id="vstack">
					<h2>VStack</h2>
					<p>Stacks multiple elements horizontally.</p>
					<pre><code class="html" data-trim data-line-numbers>
					  <div class="r-vstack">
					    &lt;img width="450" height="300" src="..."&gt;
					    &lt;img width="300" height="450" src="..."&gt;
					    &lt;img width="400" height="400" src="..."&gt;
					  </div>
					</code></pre>
				</section>

				<section data-auto-animate>
					<h2>VStack Example</h2>
					<div class="r-vstack">
						<p style="padding: 0.50em; background: #eee; margin: 0.25em">One</p>
						<p style="padding: 0.75em; background: #eee; margin: 0.25em">Two</p>
						<p style="padding: 1.00em; background: #eee; margin: 0.25em">Three</p>
					</div>
				</section>

			</div>

		</div>

		<script src="../dist/reveal.js"></script>
		<script src="../plugin/highlight/highlight.js"></script>
		<script>
			Reveal.initialize({
				center: true,
				hash: true,
				plugins: [ RevealHighlight ]
			});
		</script>

	</body>
</html>