-
Notifications
You must be signed in to change notification settings - Fork 3
/
reveal-demo.html
executable file
·73 lines (54 loc) · 1.76 KB
/
reveal-demo.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RevealJS Example</title>
<meta name="description" content="This is my awesome slideshow page">
<meta name="author" content="Girl Develop It">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="reveal.css">
<link rel="stylesheet" href="black.css" id="theme">
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Welcome!</h1>
</section>
<section>
<h3>Here is a section title!</h3>
<p>and a paragraph</p>
<ul>
<li>List item</li>
<li class="fragment">List item that appears
</li>
<li class="fragment">List item that appears
</li>
</ul>
</section>
<section>
The end.
</section>
<section>
</section>
</div>
<footer>
</div>
</footer>
</div>
<script src="reveal.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: false,
history: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/none
});
</script>
</body>
</html>