-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson2.html
634 lines (564 loc) · 23.4 KB
/
lesson2.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>lesson2. vanilla JS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=792, user-scalable=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="shower/themes/ribbon/styles/screen.css">
<!--
To apply styles to the certain slides
set slide ID to get needed elements
-->
<style>
#Cover h2 {
margin:30px 0 0;
color:#FFF;
text-align:center;
font-size:70px;
}
#Cover p {
margin:10px 0 0;
text-align:center;
color:#FFF;
font-style:italic;
font-size:20px;
}
#Cover p a {
color:#FFF;
}
#Picture h2 {
color:#FFF;
}
#SeeMore h2 {
font-size:100px
}
#SeeMore img {
width:0.72em;
height:0.72em;
}
</style>
</head>
<body class="list">
<header class="caption">
<h1>vanilla JS</h1>
<p>для Epic Skills</p>
</header>
<section class="slide cover" id="Cover"><div>
<h2 style="color: #333"><i style="width:80px; height:80px; display:inline-block; background: url('pictures/lesson2/vanilla.gif') 11px top no-repeat; background-size: 80px" ></i> vanilla <b style="color: #ba45cc; text-shadow: 2px 2px 2px #000;">JS</b></h2>
<p style="color: #ba45cc; font-size: 1.2em; font-weight: bold; text-shadow: 2px 2px 2px #000;">возвращение к истокам.</p>
<img src="pictures/lesson2/beginnings.jpg" alt="">
<!-- photo by John Carey, fiftyfootshadows.net -->
</div></section>
<section class="slide cover"><div>
<h2 style="color:#555">Программирование</h2>
<h2 style="color:#555">- всего навсего <strong>последовательность действий</strong>.</h2>
<img src="pictures/lesson2/dance.jpg" alt=""/>
</div></section>
<section class="slide cover"><div>
<h2 style="color:#d00">Будем учится программировать?</h2>
<img src="pictures/lesson2/learning.jpg" alt="">
</div></section>
<section class="slide shout"><div>
<h2>Переходим к действиям</h2>
</div></section>
<section class="slide shout"><div>
<h2>То, что меняется</h2>
</div></section>
<section class="slide shout"><div>
<h2>Переменные</h2>
</div></section>
<section class="slide"><div>
<h2>Формируем слова</h2>
<code class="next">var</code>
<code class="next">day</code>
<code class="next">;</code>
</br>
<code class="next">var</code>
<code class="next">month</code>
<code class="next">;</code>
</br>
<code class="next">var</code>
<code class="next">year</code>
<code class="next">;</code>
</br></br>
<code class="next">var</code>
<code class="next">day</code>
<code class="next">,</code>
<code class="next">month</code>
<code class="next">,</code>
<code class="next">year</code>
<code class="next">;</code>
</br></br>
<code class="next">day = 10;</code>
<code class="next">month = 07;</code>
<code class="next">year = 2013;</code>
</div></section>
<section class="slide"><div>
<h2>Объявляем и присваиваем.</h2>
<pre>
<code>var day = 10,</code>
<code> month = 07,</code>
<code> year = 2013;</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Слабая типизация.</h2>
<pre>
<code>var day;</code>
<code class="next">day = 10;</code>
<code class="next">day = "10";</code>
<code class="next">day = "среда.";</code>
<code class="next">day = "третий день от воскресенья!";</code>
</pre>
<p class="next"><code>day = true; <note>// логическе значение</note></code></p>
</div></section>
<section class="slide"><div>
<h2>Операции над переменными</h2>
<code>var year = 2013;</code>
<pre class="next">
<b>Перенесёмся в будущее.</b>
<code>year + 10; <em class="next">// Результат операции никуда не сохранен!</em></code>
</pre>
<pre class="next">
<b>Сохраняем результат.</b>
<code>var <mark class="important">future</mark> = year + 10; <em class="note">// future = 2023</em></code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Слово не воробей!</h2>
<code>var future = 2023;</code>
<pre class="next">
<em>Здесь всё понятно, полетели дальше.</em>
<code>var far_future = Future + 10;</code>
<code class="next">Результат операции - <mark class="important">ошибка</mark>!</code>
<b class="next">Назвался с маленькой буквы, носи такое имя.</b>
<code class="next">var far_future = <mark>future</mark> + 10;</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Синтаксис</h2>
<p class="next"> Каждая фраза имеет логическое завершение - <code>;</code></p>
<pre class="next">
<em>Фразы располагаются друг под другом.</em>
<code>var time = "15:30";</code>
<code>var is_rainy = false;</code>
</pre>
</div></section>
<section class="slide shout"><div>
<h2>Думай наперед</h2>
</div></section>
<section class="slide"><div>
<p> Обдумывай каждое название</p>
<h2 class="next">Красота в деталях:</h2>
<pre>
<code class="next">var symbols = "a bc defgh ijk lmnopqrst uvwxy z";</code>
<code class="next">var symbols = ["a", "bc", "defgh", ...];</code>
<code class="next">var <mark>alt_str</mark> = "a bc defgh ijk lmnopqrst uvwxy z";</code>
<code class="next">var <mark>alt_arr</mark> = ["a", "bc", "defgh", ...];</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>думай о Контексте</h2>
</div></section>
<section class="slide"><div>
<h2 class="next">$</h2>
<p> Дай шанс быть узнанной:</p>
<pre>
<code class="next">var nav = $("#main nav"); <note>// Что представляет nav?</note></code>
<code class="next">var <mark>$footer</mark> = $("#main footer");</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Неправильные имена.</h2>
<p> Забронированные или служеюные имена:</p>
<code>do if in for let new try var case else enum eval false null this true void with break catch class const super throw while yield delete export import public return static switch typeof default extends finally package private continue debugger function arguments interface protected implements instanceof</code>
</div></section>
<section class="slide"><div>
<h2>Комментарии</h2>
<pre>
<em>Однострочный комментарий:</em>
<code>// Вылет назначен на вечер пятницы.</code>
</pre>
<pre>
<em>Многострочный комментарий:</em>
<code>/* Вылет назначен на вечер пятницы. </br> На девять вечера. </br> Боинг 747. */</code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide cover"><div>
<h2 style="color:#fff">Разве теперь я программист?</h2>
<img src="pictures/lesson2/amiprogrammer.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>Функции</h2>
</div></section>
<section class="slide"><div>
<h2>Логирование - поиск ошибок:</h2>
<ul>
<li><code>alert</code></li>
<li><code>console.log</code></li>
<li><code>try {..} catch () {..}</code></li>
<li>и др.</li>
</ul>
<p class="next">Вызываем функцию: <code>alert ("Show me!");</code></p>
</div></section>
<section class="slide"><div>
<h2>Любые функции:</h2>
<ul>
<li><code><mark class="important">$</mark></code> <code class="next">-> <mark class="important">$(</mark>"h2"<mark class="important">)</mark></code></li>
<li><code>$(document).<mark class="important">ready</mark></code> <code class="next">-> $(document).<mark class="important">ready(</mark>..<mark class="important">)</mark></code></li>
<li><code>$("h1").<mark class="important">remove</mark></code> <code class="next">-> $("h1").<mark class="important">remove()</mark></code></li>
<li><code>$("h1").<mark class="important">css</mark></code> <code class="next">-> $("h1").<mark class="important">css(</mark>"opacity", .5<mark class="important">)</mark></code></li>
<li>и др.</li>
</ul>
</div></section>
<section class="slide"><div>
<h2>Моя первая функция</h2>
<pre>
<code class="next">function <em class="next">SayMyName <mark class="next">()</mark> <mark class="next">{</mark></em> </code>
<code class="next"> // Частная собственность!</code>
<code class="next">}</code>
</pre>
<pre class="next">
<b>При обращении к имени <mark>SayMyName</mark>, будет выведено:</b>
<code>function SayMyName () {...}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Складываем слова в предложения:</h2>
<pre>
<code>function <mark>SayMyName</mark> (<i class="next">name</i>) {</code>
<code class="next"> var str = name;</code>
<code class="next"> str = "Hello" + name + "!";</code>
<code class="next"> <mark class="important">alert</mark> (str); <i class="next">// Вызываем функцию внутри другой функции </i></code>
<code>}</code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2 style="color: #fff">Зачем мне функции, если я могу писать код построчно?</h2>
<img src="pictures/lesson2/question.jpg"/>
</div></section>
<section class="slide"><div>
<h2>Освободи место для работы!</h2>
<pre>
<code>function <mark>MorningInstructions</mark> () {</code>
<code> // место для работы</code>
<code>}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Разложи по полкам!</h2>
<code>function Instructions() {</code>
<pre>
<code class="next"> getUp();</code>
<code class="next"> doExercise();</code>
<code class="next"> cleanTeeth();</code>
<code class="next"> makeCoffee();</code>
<code class="next"> dressUp();</code>
<code class="next"> makeASmile();</code>
<code class="next">}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Используй, когда необходимо!</h2>
<code>function Instructions() {</code>
<pre>
<code class="next"> getUp();</code>
<code class="next"> <s>doExercise();</s></code>
<code class="next"> makeCoffee();</code>
<code class="next"> makeASmile();</code>
<code class="next"> cleanTeeth();</code>
<code class="next"> dressUp();</code>
<code class="next">}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Используй, когда необходимо!</h2>
<code>function Instructions() {</code>
<pre>
<code class="next"> getUp();</code>
<code class="next"> makeASmile();</code>
<code class="next"> <s>doExercise();</s></code>
<code class="next"> <s>makeCoffee();</s></code>
<code class="next"> <s>cleanTeeth();</s></code>
<code class="next"> <s>dressUp();</s></code>
<code class="next">}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Используй, когда необходимо!</h2>
<code>function Instructions() {</code>
<pre>
<code class="next"> goToWorkUp();</code>
<code class="next"> makeCoffee();</code>
<code class="next"> makeCoffee();</code>
<code class="next"> makeCoffee();</code>
<code class="next"> makeCoffee();</code>
<code class="next">}</code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>Игры в да - нет</h2>
</div></section>
<section class="slide"><div>
<h2>Хочу и баста</h2>
<p>
Условие: <code>var do_you_want_love = true;</code>
</p>
<pre class="next">
<code>if (do_you_want_love) {</code>
<code> take_some_love();</code>
<code>}</code>
</pre>
<p class="next">Условие может <code>истиной</code> или <code>ложью</code>!</p>
</div></section>
<section class="slide"><div>
<h2>Делай больше</h2>
<pre class="next">
<code>function LoveController (make_love) {</code>
<code> if (make_love) {</code>
<code> <mark class="important">take_some_love</mark>();</code>
<code> }</code>
<code>}</code>
</pre>
<p class="next">
Используем: <code>LoveController(true);</code>
</p>
</div></section>
<section class="slide shout"><div>
<h2>Формулируем вопрос</h2>
</div></section>
<section class="slide"><div>
<pre>
<code>Условие: <mark>var can_you_play = false;</mark></code>
<code>Условие: <mark>var wanna_learn = true;</mark></code>
</pre>
<pre class="next">
<code>if (can_you_play) {</code>
<code> <mark class="important">lets_play</mark>();</code>
<code>} else if (wanna_learn) {</code>
<code> <mark class="important">take_a_lesson</mark>();</code>
<code>} else {</code>
<code> <mark class="important">go_home</mark>();</code>
<code>}</code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>Круговое движение</h2>
</div></section>
<section class="slide"><div>
<h2>Циклы</h2>
<pre>
<em>Возможность повторять однотипные действия:</em>
<code>for(var i = 0; i < 100; <mark>i++</mark>) {</code>
<code> ...</code>
<code>}</code>
</pre>
</div></section>
<section class="slide"><div>
<pre>
<em>В обратном порядке:</em>
<code>for(var i = 100; i > 0; <mark>i--</mark>) {</code>
<code> ...</code>
<code>}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Аналог в jQuery:</h2>
<pre>
<code>.<mark>each</mark>(); <note class="next"> // Да, это тоже функция!</note></code>
</pre>
<pre class="next">
<em>Используем для коллекции:</em>
<code>$(<mark class="next">"h2"</mark>).<mark class="next">each</mark>(<mark class="next">function (..) {..}</mark>);</code>
</pre>
<pre class="next">
<em>Количство элементов в коллекции <mark class="important">==</mark> количеству вызовов.</em>
<code><mark>function</mark> (<mark class="important">i</mark>, <mark class="important">e</mark>) { .. }</code>
<note><mark>i</mark> - индекс, <mark>e</mark> - элемент</note>
</pre>
</div></section>
<section class="slide shout"><div>
<h2>Атака массивов</h2>
</div></section>
<section class="slide"><div>
<pre>
<code>"цветок", "черный дипломат", "очки", "плащ"</code>
<code class="next">"леон", "матильда", "стетфилд", "фикус"</code>
<code class="next">1, 2, 3, 4</code>
<note class="next"><mark>Всё это напоминает очередь</mark></note>
<note class="next"><mark class="important">Так и есть!</mark></note>
</pre>
</div></section>
<section class="slide"><div>
<pre>
<b>Беспорядочный список:</b>
<code class="next">"цветок", "черный дипломат", "очки", "плащ"</code>
</pre>
<pre class="next">
<b>Упорядочный список:</b>
<code>"подъём", "упражнения на пресс", "в магазин за молоком",</br> "завтрак"</code>
</pre>
<p class="next"><code>Совершенно не важно!</code></p>
</div></section>
<section class="slide"><div>
<pre class="next">
<note>Окаймляем в скобки:</note>
<code><mark>[</mark>"подъём", "упражнения на пресс", "в магазин за молоком",</br> "завтрак"<mark>]</mark>;</code>
</pre>
<pre class="next">
<note>Записываем в переменную:</note>
<code>var <mark class="important">morning</mark> = <mark>[</mark>"подъём", "упражнения на пресс", "в магазин за молоком",</br> "завтрак"<mark>]</mark>;</code>
</pre>
</div></section>
<section class="slide"><div>
<pre>
<note>Утренний распорядок:</note>
<code class="next">var <mark>morning</mark> = ["подъём", "упражнения на пресс", "в магазин за молоком", "завтрак"];</code>
</pre>
<pre>
<code class="next">morning<mark>[0]</mark> <note>// -> "подъём"</note></code>
<code class="next">morning<mark>[1]</mark> <note>// -> "упражнения на пресс"</note></code>
<code class="next">morning<mark>[2]</mark> <note>// -> "в магазин за молоком"</note></code>
<code class="next">morning<mark>[3]</mark> <note>// -> "завтрак"</note></code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide cover"><div>
<h2 style="color:#eee">... функции, переменные, циклы и условия, массивы - но ты еще не программист!</h2>
<img src="pictures/lesson2/advice.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>Поток</h2>
</div></section>
<section class="slide"><div>
<h2>Всё есть поток</h2>
<pre>
<code>function LearningEnglish () {</code>
<code class="next"> var <mark>i_am_saying</mark>;</code>
<code class="next"> <mark>i_am_saying</mark> = "Dream it.";</code>
<code class="next"> <mark>i_am_saying</mark> = i_am_saying + " Wish it.";</code>
<code class="next"> <mark>i_am_saying</mark> = i_am_saying + " Do it.";</code>
<code class="next"> alert(<mark>i_am_saying</mark>);</code>
<code>}</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Поток един</h2>
<code class="next">LearningEnglish ()</code>
</br></br>
<pre>
<code class="next">var i_am_saying;</code>
<code class="next">i_am_saying = "Dream it.";</code>
<code class="next">i_am_saying = i_am_saying + " Wish it.";</code>
<code class="next">i_am_saying = i_am_saying + " Do it.";</code>
<code class="next">alert(i_am_saying);</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Так для чего же нам функции?</h2>
</div></section>
<section class="slide"><div>
<h2>Будь в потоке<b class="next">, <b style="color:#9ca8ff">управляй действиями</b>!</b></h2>
<pre>
<code class="next">function <mark>what</mark>() { alert("what"); }</code>
<code class="next">function <mark>is</mark>() { alert("is"); }</code>
<code class="next">function <mark>your</mark>() { alert("your"); }</code>
<code class="next">function <mark>name</mark>() { alert("name"); }</code>
<code class="next">function <mark>question</mark>() { alert("?"); }</code>
<code class="next">function <mark>Leon</mark>() { alert("Leon"); }</code>
<code class="next">function <mark>woohoo</mark>() { alert("!"); }</code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Поехали!</h2>
<pre>
<code class="next">what();</code>
<code class="next">is();</code>
<code class="next">your();</code>
<code class="next">name();</code>
<code class="next">question();</code>
</br>
<code class="next">// <mark>What is your name?</mark></code>
</pre>
</div></section>
<section class="slide"><div>
<h2>Всё те же функции</h2>
<pre>
<code class="next">my();</code>
<code class="next">name();</code>
<code class="next">is();</code>
<code class="next">Leon();</code>
<code class="next">woohoo();</code>
</br>
<code class="next">// <mark>My name is Leon!</mark></code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>Всему свое время</h2>
</div></section>
<section class="slide shout"><div>
<h2>Ставим таймер</h2>
</div></section>
<section class="slide"><div>
<pre>
<em>Приготовься:</em>
<code>function <mark>makeAShot</mark> () {</code>
<code> alert("испорчена еще одна рубашка!");</code>
<code>}</code>
</pre>
<pre class="next">
<em>Дождись момента между ударами сердца:</em>
<code>setTimeout(<mark>makeAShot</mark>, 5000);</code>
</pre>
</div></section>
<section class="slide"><div>
<pre>тренний распорядок:
<code>function <mark>morning</mark> () {</code>
<code> alert("купить и выпить стакан молока!");</code>
<code>}</code>
</pre>
<pre class="next">
<em>Каждое утро:</em>
<code>setInterval(<mark>makeAShot</mark>, 5000);</code>
</pre>
</div></section>
<section class="slide cover"><div>
<h2>Хочу попробовать!</h2>
<img src="pictures/lesson2/try.jpg"/>
</div></section>
<section class="slide shout"><div>
<h2>хотите совет от Леона?</h2>
</div></section>
<section class="slide cover"><div>
<h2 style="color:#eee">..каждый день по стакану молока!</h2>
<img src="pictures/lesson2/advice.jpg"/>
</div></section>
<!--
To hide progress bar from entire presentation
just remove “progress” element.
-->
<div class="progress"><div></div></div>
<script src="shower/shower.min.js"></script>
<!-- Copyright © 2013 Yours Truly, Famous Inc. -->
</body>
</html>