blob: f8155aca1156a95f6b5b847176acd2b96feca9de (
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
|
title: Slide Title
subtitle: Subtitle
class: image
![Mobile vs desktop users](image.png)
---
title: Segue Slide
subtitle: Subtitle
class: segue dark nobackground
---
title: Agenda
class: big
build_lists: true
Things we'll cover (list should build):
- Bullet1
- Bullet2
- Bullet3
---
title: Today
class: nobackground fill
![Many kinds of devices.](image.png)
<footer class="source">source: place source info here</footer>
---
title: Big Title Slide
class: title-slide
---
title: Code Example
Media Queries are sweet:
<pre class="prettyprint" data-lang="css">
@media screen and (max-width: 640px) {
#sidebar { display: none; }
}
</pre>
---
title: Once more, with JavaScript
<pre class="prettyprint" data-lang="javascript">
function isSmall() {
return window.matchMedia("(min-device-width: ???)").matches;
}
function hasTouch() {
return Modernizr.touch;
}
function detectFormFactor() {
var device = DESKTOP;
if (hasTouch()) {
device = isSmall() ? PHONE : TABLET;
}
return device;
}
</pre>
---
title: Centered content
content_class: flexbox vcenter
This content should be centered!
|