-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.69 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Dim Sum Labs</title>
<link rel="stylesheet"
href="3rd-party/reveal.js/dist/reset.css">
<link rel="stylesheet"
href="3rd-party/reveal.js/dist/reveal.css">
<link rel="stylesheet"
href="3rd-party/reveal.js/dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="3rd-party/reveal.js/plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-state="short"
data-background="images/welcome-to-dsl.png"
data-background-size="contain"
data-background-color="black"></section>
<section data-state="long"
data-background-iframe="https://dimsumlabs.github.io/dsl-accounts/"></section>
<section data-state="short"
data-background="images/tidy-up.png"
data-background-size="contain"
data-background-color="black"></section>
</div>
</div>
<script src="3rd-party/reveal.js/dist/reveal.js"></script>
<script>
Reveal.initialize({
autoSlideStoppable: false,
controls: false,
loop: true,
progress: false
});
Reveal.addEventListener("short", function() {
Reveal.configure({autoSlide: 10000});
}, false );
Reveal.addEventListener("long", function() {
Reveal.configure({autoSlide: 20000});
}, false );
</script>
</body>
</html>