-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
411 lines (356 loc) · 10.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Shower Presentation Engine</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="shower/themes/ribbon/styles/screen-16x10.css">
</head>
<style>
.slide.flex {
display: flex;
}
.media {
display: block;
max-width: 100%;
max-height: 80%;
margin: 20px auto;
box-shadow: 0 0 100px 10px #ccc;
}
.block-shadow {
box-shadow: 0 0 100px 10px #ccc;
}
.media.medium {
max-height: 70%;
}
.shout {
font-weight: bold;
color: #666;
}
</style>
<body class="shower list">
<header class="caption">
<h1>Обзор возможностей Chrome Developer Tools</h1>
<p>Игорь Уваров, CSSSR</p>
</header>
<section class="slide" id="cover">
<header>
<h2>Chrome DevTools</h2>
<p>Обзор возможностей</p>
</header>
<img class="cover" src="pictures/1.jpg">
<style>
#cover::after { display: none; }
#cover header {
position: absolute;
left: 47.875%;
text-align: center;
color: white;
top: 50%;
transform: translateY(-65%);
text-shadow: 0 0 20px #09407f;
}
#cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
#cover p {
line-height: 1;
font-size: 36px;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<h2>Разберем</h2>
<ul>
<li>Работу с версткой и стилями</li>
<li class="next">Работу с сетью</li>
<li class="next">Отладку JavaScript</li>
<li class="next">Измерение производительности</li>
</ul>
</section>
<section class="slide" id="markup-cover">
<header>
<h2>Верстка и стили</h2>
</header>
<style>
#markup-cover {
background-image: url(pictures/2.jpg);
background-size: cover;
background-position: center center;
}
#markup-cover::after { display: none; }
#markup-cover header {
position: absolute;
right: 40px;
color: white;
top: 50%;
text-shadow: 0px 0px 20px #000;
transform: translateY(-50%);
}
#markup-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<h2>Что есть интересного</h2>
<ul>
<li class="next">Управление классами</li>
<li class="next">Доступ к DOM из консоли</li>
<li class="next">Управление анимациями</li>
</ol>
</section>
<section class="slide">
<p class="shout">
<a href="examples/markup/index.html" target="_blank">Demo</a>
</p>
</section>
<section class="slide" id="network-cover">
<header>
<h2>Работа с сетью</h2>
</header>
<style>
#network-cover {
background-image: url(pictures/3.jpg);
background-size: cover;
background-position: center center;
}
#network-cover::after { display: none; }
#network-cover header {
position: absolute;
top: 20%;
left: 0;
text-align: center;
color: white;
text-shadow: 0px 0px 20px #000;
width: 100%;
text-align: center;
}
#network-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<h2>Возможности работы с сетью:</h2>
<ul>
<li class="next">Фильтрация запросов</li>
<li class="next">Ограничение скорости</li>
<li class="next">Сбор логов</li>
</ul>
</section>
<section class="slide">
<p class="shout">
<a href="https://developers.google.com/" target="_blank">Demo</a>
</p>
</section>
<section class="slide" id="js-cover">
<header>
<h2>Отладка JavaScript</h2>
</header>
<style>
#js-cover {
background-image: url(pictures/4.jpg);
background-size: cover;
background-position: center center;
}
#js-cover::after { display: none; }
#js-cover header {
position: absolute;
top: 40px;
left: 0;
text-align: center;
color: white;
text-shadow: 0px 0px 20px #000;
width: 100%;
text-align: center;
}
#js-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<p class="shout">console.log()</p>
</section>
<section class="slide">
<h2>Использование вкладки Source:</h2>
<ul>
<li>Несколько способов останавливать выполнение кода</li>
<li class="next">Просмотр стека вызовов</li>
<li class="next">Возможность следить за выбранными переменными</li>
<li class="next">Доступ к контексту из консоли</li>
</ul>
</section>
<section class="slide">
<p class="shout">
<a href="examples/js-debug/index.html" target="_blank">Demo</a>
</p>
</section>
<section class="slide" id="performance-cover">
<header>
<h2>Производительность</h2>
</header>
<style>
#performance-cover {
background-image: url(pictures/5.jpg);
background-size: cover;
background-position: center center;
}
#performance-cover::after { display: none; }
#performance-cover header {
position: absolute;
top: 100px;
left: 0;
text-align: center;
color: white;
text-shadow: 0px 0px 20px #000;
width: 100%;
text-align: center;
}
#performance-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<h2>Что такое производительность?</h2>
<blockquote cite="https://developers.google.com/web/fundamentals/performance/rendering/">
Производительность – это искусство избегать работы и делать любую работу как можно более эффективно. Во многих случаях это означает работу вместе с браузером, а не против него.
</blockquote>
</section>
<section class="slide">
<h2 class="shout">
<div>60 FPS</div>
<div class="next">1fr = ~16.6ms</div>
</h2>
</section>
<section class="slide">
<h2>Как рендерится 1 кадр?</h2>
<img class="block-shadow" src="pictures/performance/frame-full.jpg" alt="" width="80%">
<img class="block-shadow next" src="pictures/performance/frame-no-layout.jpg" alt="" width="80%">
<img class="block-shadow next" src="pictures/performance/frame-no-layout-paint.jpg" alt="" width="80%">
</section>
<section class="slide">
<p class="shout">
<a href="examples/performance/fps/index.html" target="_blank">Demo</a>
</p>
</section>
<section class="slide" id="memory-cover">
<header>
<h2>Управление памятью</h2>
</header>
<style>
#memory-cover {
background-image: url(pictures/6.jpg);
background-size: cover;
background-position: center center;
}
#memory-cover::after { display: none; }
#memory-cover header {
position: absolute;
top: 50%;
right: 50px;
text-align: center;
color: white;
bottom: 90px;
text-shadow: 0px 0px 20px #000;
width: 400px;
transform: translateY(-50%);
}
#memory-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<section class="slide">
<h2>Признаки проблем с памятью:</h2>
<ol>
<li class="next">Приложение постепенно начинает работать медленнее.</li>
<li class="next">Приложение постоянно медленно работает.</li>
<li class="next">Приложение иногда подвисает или подтормаживает.</li>
</ol>
</section>
<section class="slide">
<h2>Как устроена память JS?</h2>
<img class="media" src="pictures/performance/JSHeap.svg" alt="" width="70%">
</section>
<section class="slide">
<h2>Как работает сборщик мусора?</h2>
<img class="media" src="pictures/performance/memory-graph-2.png" alt="" width="100%" style="padding: 40px">
</section>
<section class="slide">
<p class="shout">
<a href="examples/performance/memory/index.html" target="_blank">Demo</a>
</p>
</section>
<section class="slide">
<h2>Полезные ссылки</h2>
<ul>
<li><a href="https://developers.google.com/web/tools/chrome-devtools/">Документация Google Chrome Developer Tools</a></li>
<li><a href="https://www.youtube.com/watch?v=hNIvcEcj-XA">Доклад Антона Шувалова - Отладка кода в браузере</a></li>
<li><a href="https://www.youtube.com/watch?v=3sV9yMhqAgk">Доклад Романа Сальникова - Суперсилы Chrome Dev Tools</a></li>
<li><a href="http://devtoolstips.com/">Devtools Tips&Tricks #1</a></li>
<li><a href="https://umaar.com/dev-tips/">Devtools Tips&Tricks #2</a></li>
<li><a href="https://medium.com/outsystems-experts/beyond-memory-leaks-in-javascript-d27fd48ae67e">Beyond Memory Leaks in JavaScript</a></li>
<li><a href="https://www.smashingmagazine.com/2012/11/writing-fast-memory-efficient-javascript/">How To Write Fast, Memory-Efficient JavaScript</a></li>
</ul>
</section>
<section class="slide">
<p class="shout" style="font-size: 72px">
<a href="https://tinyurl.com/csssr-devtools" target="_blank">tinyurl.com/csssr-devtools</a>
</p>
</section>
<section class="slide" id="finish-cover">
<header>
<h2>Спасибо за внимание!</h2>
</header>
<style>
#finish-cover {
background-image: url(pictures/7.jpg);
background-size: cover;
background-position: center center;
}
#finish-cover::after { display: none; }
#finish-cover header {
position: absolute;
top: 100px;
left: 0;
text-align: center;
color: white;
text-shadow: 0px 0px 20px #000;
width: 100%;
text-align: center;
}
#finish-cover h2 {
line-height: 1.2;
font-size: 72px;
color: white;
margin-bottom: 0;
}
</style>
</section>
<div class="progress"></div>
<script src="shower/shower.min.js"></script>
</body>
</html>