-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (74 loc) · 3.17 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
<!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>Android Developer Group</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/adg.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background-image="./dist/images/cover.png">
<div id="timer" class="timer"></div>
<div class="meetup-title">What's new in Android 11</div>
<div class="meetup-subtitle">by Óscar Wahltinez.</div>
</section>
<section data-background-image="dist/images/oscar.png"></section>
<section data-background-image="dist/images/pandemia.png"></section>
<section data-background-image="dist/images/discord.png"></section>
<section data-background-image="dist/images/oscar.png"></section>
<section data-background-image="dist/images/questions.png"></section>
<section data-background-image="dist/images/adg-1.png"></section>
<section data-background-image="dist/images/adg-2.png"></section>
<section data-background-image="dist/images/adg-3.png"></section>
<section data-background-image="dist/images/adg-4.png"></section>
<section data-background-image="dist/images/bg-poll.png">
<h1>Rebranding</h1>
<ul>
<li>Queremos ser únicos</li>
<li>Posicionamiento</li>
<li>Nueva identidad</li>
<li>Expansión</li>
<li>Engadgement</li>
</ul>
</section>
<section data-background-image="dist/images/poll.png"></section>
<section data-background-image="dist/images/discord.png"></section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
backgroundTransition: 'slide',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
</script>
<script>
let countDownDate = new Date("Oct 7, 2020 19:00:02").getTime();
let x = setInterval(function () {
let now = new Date().getTime();
let distance = countDownDate - now;
let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
let seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("timer").innerHTML = "Empezamos en " +minutes + "m " + seconds + "s ";
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "¡Empezamos ya!";
}
}, 1000);
</script>
</body>
</html>