-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
executable file
·159 lines (132 loc) · 5.85 KB
/
index.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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>My presentation</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/greenpeace.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script src="js/print.js"></script>
<!-- Configure the page score (0-100)
Conf. the minimum time for this presentation to be considered completed in seconds -->
<script>
var pageScore = 1;
var minCompletedTime = 30;
</script>
<!-- <script src="js/scormfunctions.js"></script> -->
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- START SLIDES -->
<section id="start">
<h1>My presentation title</h1>
<p><img src="img/greenpeace.svg" alt="Greenpeace" class="plain" style="width: 300px; height: auto" /></p>
<p>Use the space bar, arrow keys or swipe to browse this presentation.</p>
</section>
<section>
<section id="typography-lists-code-fragments">
<h2>Typography, lists, tables, code, fragments</h2>
</section>
<section id="typography">
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<p>Paragraph</p>
<p><small>Small</small></p>
</section>
<section id="lists">
<p>Unrdered list</p>
<ul>
<li>Unordered</li>
<li>List</li>
</ul>
<p>Ordered list</p>
<ol>
<li>Ordered</li>
<li>List</li>
</ol>
</section>
<section id="tables">
<h2>Tabular Tables</h2>
<table>
<thead>
<tr>
<th>Item</th>
<th>Value</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apples</td>
<td>$1</td>
<td>7</td>
</tr>
<tr>
<td>Lemonade</td>
<td>$2</td>
<td>18</td>
</tr>
<tr>
<td>Bread</td>
<td>$3</td>
<td>2</td>
</tr>
</tbody>
</table>
</section>
<section id="code">
<pre><code class="javascript" data-trim contenteditable style="font-size: 18px;">
Reveal.addEventListener( 'customevent', function() {
console.log( '"customevent" has fired' );
} );
</code></pre>
</section>
<section id="fragments">
<h2>Fragments</h2>
<p>Hit the next arrow...</p>
<p class="fragment">... to step through ...</p>
<p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
<aside class="notes">
This slide has fragments which are also stepped through in the notes window.
</aside>
</section>
</section>
<section>
<section id="backgrounds">
<h2>Backgrounds</h2>
</section>
<section id="color-background" data-background="#dddddd">
<h3>Color backgrounds</h3>
<p>
Set <code>data-background="#dddddd"</code> on a slide to change the background color. All CSS color formats are supported.
</p>
</section>
<section id="image-background" data-background="https://es.greenpeace.org/es/wp-content/uploads/sites/3/2018/04/testamento-solidario-2100x0-c-default.jpg">
<h3>Image Backgrounds</h3>
<pre><code class="hljs html"><section data-background="image.png"></code></pre>
</section>
<section id="iframed-background" data-background-iframe="https://es.greenpeace.org/es/" data-background-interactive>
<div style="position: absolute; width: 40%; right: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 5px 25px rgba(0,0,0,0.2); background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; font-size: 20px; text-align: left;">
<h3>Show web pages</h3>
<p>With this iframed background you can show web pages</p>
</div>
</section>
</section>
<section id="thank-you" data-state="theend">
<h2>Thank you</h2>
<p>The end</p>
</section>
<!-- END SLIDES -->
</div>
</div>
<script src="js/reveal.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/config.js"></script>
</body>
</html>