forked from Yannael/incremental-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
296 lines (255 loc) · 8.31 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<!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>wk 2: Incremental Development</title>
<script src='../embed-scripts/code-along.js'></script>
<link rel="stylesheet" href="../reveal.js/css/reset.css">
<link rel="stylesheet" href="../reveal.js/css/reveal.css">
<link rel="stylesheet" href="../reveal.js/css/theme/night.css">
<!-- Theme used for syntax highlighting of code -->
<!-- <link rel="stylesheet" href="./reveal.js/lib/css/monokai.css"> -->
<!-- Printing and PDF exports -->
<!-- <script>
var link = document.createElement('link');
link.rel = '../reveal.js/stylesheet';
link.type = '../reveal.js/text/css';
link.href = window.location.search.match(/print-pdf/gi) ? '../reveal.js/css/print/pdf.css' : './reveal.js/css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script> -->
<style>
/* https://stackoverflow.com/questions/25479420/how-to-add-a-fixed-footer-on-all-slides */
.reveal .footer {
position: absolute;
bottom: 1em;
left: 1em;
font-size: 0.5em;
}
</style>
</head>
<body>
<div class="reveal">
<div class='footer'>
<code id="footer-text">ESC to overview</code>
<br>
<a id='to-repo' style='visibility:hidden'
href="https://github.com/hackyourfuturebelgium/incremental-development/tree/master/week-2" target="_blank">
<code>module repository</code>
</a>
</div>
<div class="slides">
<section id='cover-slide'>
<h3>Incremental Development</h3>
<br>
<h2>Week 2: Be Responsive</h2>
<br>
<p>
hit "s" for speaker notes
</p>
<a href="htt ps://github.com/hackyourfuturebelgium/incremental-development/tree/master/week-2">-- back to
repo -- </a>
<aside class="notes">
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the
speaker notes window (hit 's' on your keyboard).
</aside>
</section>
<section id='about-today'>
<h1>About Today</h1>
<br>
<br>
<p>Learning Objectives, Announcements, Installations</p>
<br>
<code>(~10 min)</code>
</section>
<section id="learning-objectives">
<section>
<h2>Learning Objectives</h2>
<p>
What can you expect to cover in class today?
</p>
</section>
<section>
<h2>So many softwares!</h2>
<br>
<ul>
<li>Git</li>
<li>GitHub</li>
<li>GitKraken</li>
<li>Visual Studio Code</li>
<li>Browser</li>
<li>Command Line</li>
</ul>
</section>
<!-- if there's time -->
<!-- <section>
<h2>The Internet</h2>
<br>
<ul>
<li>What is it?</li>
<li>How does it work?</li>
<li>What are web apps?</li>
</ul>
</section> -->
</section>
<section id='review'>
<h1>Review</h1>
<br>
<br>
<p>Revisit the last week's assignment and cover any questions you still have.</p>
<br>
<code>(~30 min)</code>
</section>
<section id='review'>
<h1>New Material</h1>
<br>
<br>
<p>An shallow introduction to what you will be learning this week.</p>
<br>
<code>(~80 min)</code>
</section>
<section id='responsive-css'>
<section>
<h2>Responsive CSS</h2>
<br>
<br>
<br>
<code>(~30 min)</code>
</section>
<section>
<h2>words</h2>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</section>
<section id='css-units'>
<script>
codeAlong({
title: 'CSS Units',
container: 'css-units',
source: [
{
name: ' Pixels ',
path: './css-units/pixels.html'
},
{
name: ' Percent ',
path: './css-units/percent.html'
},
{
name: ' Viewport ',
path: './css-units/viewport.html'
}
]
})
</script>
</section>
<section id='media-queries'>
<script>
codeAlong({
title: 'Media Queries',
container: 'media-queries',
source: [
{
name: 'Aspect Ratio',
path: './media-queries/aspect-ratio.html'
},
{
name: 'Max & Min',
path: './media-queries/max-min.html'
},
{
name: '"and"',
path: './media-queries/and.html'
},
{
name: 'Commas',
path: './media-queries/commas.html'
},
{
name: 'Tricky',
path: './media-queries/tricky.html'
},
]
})
</script>
</section>
<section id='flexbox'>
<h2>Flexbox</h2>
<br>
<br>
<p><a href="https://flexboxfroggy.com/" target='_blank'>Flexbox Froggy</a></p>
</section>
</section>
<section id='review'>
<h1>Break!</h1>
<br>
<br>
<code>(~20 min)</code>
</section>
<section id='review'>
<h1>Code-Along</h1>
<br>
<br>
<p>Build a simple project together to see the new material in action.</p>
<br>
<code>(~80 min)</code>
</section>
<section id='review'>
<h1>Homework</h1>
<br>
<br>
<p>Set up your weekly issues and read over each assignment.</p>
<br>
<code>(~20 min)</code>
</section>
<section id='cover-slide'>
<h3>Incremental Development</h3>
<br>
<h2>Week 2: Be Responsive</h2>
<br>
<p>
hit "s" for speaker notes
</p>
<a href="htt ps://github.com/hackyourfuturebelgium/incremental-development/tree/master/week-2">-- back to
repo -- </a>
</section>
</div>
</div>
<script src="../reveal.js/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
width: "100%",
height: "100%",
// keyboard: {
// // 67: function () { RevealChalkboard.toggleNotesCanvas() }, // toggle notes canvas when 'c' is pressed
// // 66: function () { RevealChalkboard.toggleChalkboard() }, // toggle chalkboard when 'b' is pressed
// // 46: function () { RevealChalkboard.clear() }, // clear chalkboard when 'DEL' is pressed
// // 8: function () { RevealChalkboard.reset() }, // reset chalkboard data on current slide when 'BACKSPACE' is pressed
// // 68: function () { RevealChalkboard.download() }, // downlad recorded chalkboard drawing when 'd' is pressed
// },
dependencies: [
// { src: 'plugin/markdown/marked.js' },
// { src: 'plugin/markdown/markdown.js' },
{ src: '../reveal.js/plugin/notes/notes.js', async: true },
// { src: './reveal.js/plugin/chalkboard/chalkboard.js' },
// { src: 'plugin/highlight/highlight.js', async: true }
]
});
Reveal.addEventListener('overviewshown', function (event) {
document.getElementById('footer-text').innerHTML = "ESC into slide";
document.getElementById('to-repo').style.visibility = 'visible';
});
Reveal.addEventListener('overviewhidden', function (event) {
document.getElementById('footer-text').innerHTML = "ESC to overview";
document.getElementById('to-repo').style.visibility = 'hidden';
});
</script>
</body>
</html>