-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
499 lines (475 loc) · 29.7 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
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
<!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>Stylish Apps</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/night.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section id="splash">
<h1 style="color: lawngreen">Stylish Apps</h1>
</section>
<section id="overview">
<dl>
<dt>Theme</dt>
<dd class="fragment" data-fragment-index="1">Глобальное множество атрибутов</dd>
<dt>Style</dt>
<dd class="fragment" data-fragment-index="2">Локальная группа атрибутов</dd>
<dt class="fragment" data-fragment-index="3" style="color: yellow">Theme Overlay</dt>
<dd class="fragment" data-fragment-index="4" style="color: lightyellow">"фильтр", переопределяющий часть темы</dd>
</dl>
</section>
<section id="style">
<section><h2>Styles</h2></section>
<section>
<h3>Styles</h3>
<p>Позволяет определить внешний вид View</p>
<pre><code class="xml"><TextView style="@style/header"/></code></pre>
<pre><code class="xml"><TextView style="@style/regular"/></code></pre>
<p class="fragment" data-fragment-index="1">И избежать дублирование кода</p>
</section>
<section>
<blockquote>Выносите стили!</blockquote>
<img src="src/img/extract%20style.gif">
</section>
<section>
<p><span style="color: red">Q:</span> Как раскрасить кнопку?</p>
<img src="src/img/buttons%20-%20default.png" width="50%">
</section>
<section>
<h3>Параметры AppCompat</h3>
<pre><code class="xml" data-trim contenteditable>
<item name="android:buttonStyle">?style</item>
<item name="android:borderlessButtonStyle">?style</item>
</code></pre>
<br>
<div class="fragment" data-fragment-index="1">
<p>значения по-умолчанию</p>
<ul>
<li style="color: orange">Widget.AppCompat.Button</li>
<li style="color: orange">Widget.AppCompat.Button.Borderless</li>
</ul>
</div>
</section>
<section>
<h3><span style="color: orange">Widget.AppCompat.Button</span></h3>
<span class="fragment" data-fragment-index="1">↓</span><br>
<span class="fragment" data-fragment-index="1" style="color: orange">Base.Widget.AppCompat.Button</span><span class="fragment" data-fragment-index="2"><br>↓</span><br>
<span class="fragment" data-fragment-index="2" style="color: orange">Widget.Material.Button</span><span class="fragment" data-fragment-index="3"><br>↓</span><br>
<span class="fragment" data-fragment-index="3"><span style="color: lightskyblue">background</span>: <span style="color:yellow">@drawable/btn_default_material</span></span>
<pre class="fragment" data-fragment-index="4"><code class="xml" data-trim contenteditable>
<ripple android:color="?attr/colorControlHighlight">
<item>
<nine-patch
android:src="@drawable/btn_mtrl_alpha"
android:tint="?attr/colorButtonNormal">
</nine-patch>
</item>
</ripple>
</code></pre>
</section>
<section>
<h3>Стили можно наследовать</h3>
</section>
<section>
<h3>Style heritage</h3>
<pre><code class="xml" data-trim contenteditable>
<style name="Implicit">
<item name="android:textSize">60dp</item>
</style>
<style name="Explicit">
<item name="android:textColor">@color/red</item>
</style>
<style name="Implicit.LargeTransparent">
<item name="android:alpha">0.5</item>
</style>
<style name="Implicit.LargeTransparentRed" parent="Explicit">
<item name="android:alpha">0.5</item>
</style>
</code></pre>
<p class="fragment" data-fragment-index="1" style="opacity: 0.5">LargeTransparent</p>
<p class="fragment" data-fragment-index="1"><span style="color: red; opacity: 0.5" class="fragment fade-out" data-fragment-index="2">LargeTransparentRed</span> <span class="fragment" data-fragment-index="2"></span></p>
<p class="fragment" data-fragment-index="2" style="color: red; opacity: 0.5; font-size: 1rem">TransparentRed</p>
</section>
<section>
<h1>ссылки</h1>
<h3 style="color: orange">?attr/resourceName</h3>
<h3 style="color: orange">?android:attr/resourceName</h3>
</section>
<section>
<blockquote>
При написании приложения мы должны всегда использовать ссылки <span style="color: orange">?attr/resource</span>, а не прямые указания <span style="color: lightskyblue">@color/black</span>
</blockquote>
</section>
<section>
<blockquote>Стили, селекторы и другие drawable <strong style="color: red">должны</strong> ссылаться на атрибуты темы</blockquote>
</section>
<section>
<dl>
<dd style="font-style: oblique"><span style="color: red">Q:</span> Как раскрасить кнопку?</dd>
<dd class="fragment" data-fragment-index="1">A: Изменить атрибут <i><span style="color: lightskyblue">colorButtonNormal</span></i> в теме приложения</dd>
</dl>
<p class="fragment" data-fragment-index="2"><span style="color: lightskyblue">colorButtonNormal</span> - это селектор</p>
</section>
</section>
<section id="theme">
<section><h2>AppCompat</h2></section>
<section>
<h4>Основные атрибуты - фон</h4>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>windowLightStatusBar</dt>
<dd class="fragment" data-fragment-index="1">Цвет иконок (светлый/темный)</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>windowBackground</dt>
<dd class="fragment" data-fragment-index="2">Фон главного окна</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>colorBackground</dt>
<dd class="fragment" data-fragment-index="2">Фон всего (алерты, активити)</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>colorForeground</dt>
<dd class="fragment" data-fragment-index="3">?? противоположный цвет ??</dd>
</dl>
</section>
<section>
<h4>Основные атрибуты - фон</h4>
<img width="50%" src="src/img/background.png">
</section>
<section>
<h4>Основные атрибуты - текст</h4>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorPrimary</dt>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorPrimaryInverse</dt>
<dd class="fragment" data-fragment-index="2">Цвет заголовка <span style="color: lightskyblue; background: darkgrey">colorPrimary</span> по-умолчанию</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorSecondary</dt>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorSecondaryInverse</dt>
<dd class="fragment" data-fragment-index="1">Цвет обычного текста - <span style="background: darkgrey"><span style="color: black">Ч</span>/<span style="color: white">Б</span></span> по-умолчанию</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorTertiary</dt>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorTertiaryInverse</dt>
<dd class="fragment" data-fragment-index="3">Цвет хинтов - <span><span style="color: lightgrey">светло</span>-<span style="color: darkgrey">темно серый </span></span></dd>
<dt style="color: lightskyblue">textColorError</dt>
<dd class="fragment" data-fragment-index="4">Цвет ошибки - <span style="color: red">красный</span></dd>
</dl>
</section>
<section>
<h4>Основные компоненты - селекторы</h4>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColor</dt>
<dd class="fragment" data-fragment-index="1">read only</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>editTextColor</dt>
<dd class="fragment" data-fragment-index="1">editable</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorHint</dt>
<dd class="fragment" data-fragment-index="1">подсказки</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorLink</dt>
<dd class="fragment" data-fragment-index="1">ссылки</dd>
</dl>
<br>
<div class="fragment" data-fragment-index="2">
<p class="medium">редкие</p>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorHighlight</dt>
<dd class="fragment" data-fragment-index="3"><span style="background: darkorange">фон выделенного текста</span></dd>
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>textColorPrimaryDisableOnly</dt>
<dd class="fragment" data-fragment-index="4">фон Off Switch кнопки</dd>
</dl>
</div>
</section>
<section>
<h4>Основные компоненты - disabled</h4>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey">android:</span>disabledAlpha</dt>
<dd class="fragment" data-fragment-index="1">[0; 1] прозрачность</dd>
</dl>
</section>
<section>
<h4>Основные атрибуты - стили</h4>
<dl class="medium">
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>toolbarStyle</dt>
<dd class="fragment" data-fragment-index="1">ThemeOverlay для тулбара</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>dropDownListViewStyle</dt>
<dd class="fragment" data-fragment-index="1">Выпадающий список</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>buttonStyle</dt>
<dd class="fragment" data-fragment-index="1">Кнопка</dd>
<dt style="color: lightskyblue"><span style="color: lightgrey;">android:</span>borderlessButtonStyle</dt>
<dd class="fragment" data-fragment-index="1">Кнопка-ссылка</dd>
</dl>
<p class="fragment" data-fragment-index="2">Их еще много...</p>
</section>
<section>
<h4>Основные атрибуты - цвета</h4>
<dl class="medium">
<dt style="color: lightskyblue">colorPrimary</dt>
<dd class="fragment" data-fragment-index="1">Цвет заголовков</dd>
<dt style="color: lightskyblue">colorPrimaryDark</dt>
<dd class="fragment" data-fragment-index="1">Фон status bar</dd>
<dt style="color: lightskyblue">colorAccent</dt>
<dd class="fragment" data-fragment-index="2">Цвет интерактивных элементов<span style="color: red">*</span></dd>
</dl>
</section>
<section>
<h2 style="color: lightskyblue">colorAccent</h2>
<div>
<p class="medium fragment" data-fragment-index="1">Зависимые по-умолчанию от <span style="color: lightskyblue">colorAccent</span></p>
<dl class="medium fragment" data-fragment-index="1">
<dt style="color: lightskyblue">colorControl<span class="fragment highlight-green" data-fragment-index="4">N</span>ormal</dt>
<dd class="fragment" data-fragment-index="2">Off</dd>
<dt style="color: lightskyblue">colorControl<span class="fragment highlight-green" data-fragment-index="4">A</span>ctivated</dt>
<dd class="fragment" data-fragment-index="2">On</dd>
<dt style="color: lightskyblue">colorControl<span class="fragment highlight-green" data-fragment-index="4">H</span>ighlight</dt>
<dd class="fragment" data-fragment-index="3">Подсветка при нажатии <span style="color: red">(ripple!)</span></dd>
</dl>
<p class="fragment" data-fragment-index="5" style="color: darkgrey">На самом деле <span style="color: lightskyblue">colorControlHighlight</span> не зависит от accent - это прозрачный черный #1f000000, поэтому его не видно на черных элементах</p>
</div>
</section>
<section>
<h4><span style="color: orange">colorAccent</span></h4>
<span class="fragment fade-out" data-fragment-index="1"><span style="color: grey">N</span>, <span style="color: grey">A</span>, <span style="color: grey">H</span></span>
<span style="display: inline-block; width: 10rem"></span>
<span style="color: grey">N</span>, <span style="color: darkorange">A</span>, <span style="color: grey">H</span>
<span style="display: inline-block; width: 10rem"></span>
<span class="fragment fade-out" data-fragment-index="1"><span style="color: orange">N</span>, <span style="color: darkorange">A</span>, <span style="color: darkorange">H</span></span>
<br>
<img src="src/img/overlay%20-%20plain.gif" class="fragment fade-out" data-fragment-index="1" />
<img src="src/img/overlay%20-%20regular.gif" />
<img src="src/img/overlay%20-%20colorful.gif" class="fragment fade-out" data-fragment-index="1" />
</section>
<section>
<h4><span style="color: orange">colorAccent</span> - проблемы</h4>
<span style="color: grey">N</span>, <span style="color: darkorange">A</span>, <span style="color: grey">H</span>
<br>
<img src="src/img/overlay%20-%20regular%20(problems).gif" data-fragment-index="1" />
<span style="display: inline-block; width: 10rem"></span>
<img src="src/img/overlay%20-%20colorful%20(problems).gif" data-fragment-index="1" />
</section>
</section>
<section id="overlay">
<section>
<h3>ThemeOverlay.AppCompat</h3>
<pre><code class="xml" data-trim contenteditable>
<style name="AppThemeOverlay.Colorful" parent="ThemeOverlay.AppCompat">
<item name="colorControlNormal">?colorAccent</item>
</style>
<style name="AppThemeOverlay.Desaturated" parent="ThemeOverlay.AppCompat">
<item name="colorControlActivated">?android:textColorTertiary<item>
</style>
</code></pre>
</section>
<section>
<p><span style="color: red;">Q:</span> Как это работает?</p>
<br>
<p class="fragment" data-fragment-index="1">Посмотрим как работает View</p>
</section>
<section>
<h3>View - Inflate</h3>
<ol>
<li><code>LayoutInflater</code> складывает стиль в <code>AttributeSet</code></li>
<li>значения <code>AttributeSet</code> извлекаются через контекст</li>
</ol>
<br>
<br>
<img class="fragment" data-fragment-index="1" src="src/img/resolve%20theme.png">
</section>
<section>
<h3>Context - хранитель тем!</h3>
<dl class="fragment" data-fragment-index="1">
<dt><code>ContextThemeWrapper</code></dt>
<dd><span style="color: lightgrey">extends ContextWrapper <span style="color: grey;">extends Context</span></span></dd>
</dl>
<div class="fragment" data-fragment-index="2">
<br>
<p>Обратно по дереву собираются темы</p>
<ol>
<li>View</li>
<li>Layout</li>
<li>Layout</li>
<li>Activity</li>
</ol>
</div>
</section>
<section>
<h4>Theme(in)ception</h4>
<div>
<span class="fragment" data-fragment-index="1" style="color: orange">LightTheme</span><br>
<span class="fragment" data-fragment-index="2" style="color: orange">ToolbarDarkTheme</span><br>
<span class="fragment" data-fragment-index="3" style="color: orange">ToolbarPopupLightTheme</span><br>
</div>
<img src="src/img/inception%20-%20light.png" width="50%">
</section>
<section>
<blockquote><span style="color: lightskyblue">Тему</span> лучше всего назначать на глобальные сущности - <code>Application, Activity, Fragment</code></blockquote>
</section>
<section>
<blockquote><span style="color: lightskyblue">Overlay</span> подходит для <code>ViewGroup - Toolbar, AlertDialog</code>, а возможно и для вашего блока с формой</blockquote>
<pre class="fragment" data-fragment-index="1"><code class="xml" data-trim contenteditable>
<LinearLayout
android:theme="@style/AppThemeOverlay.Colorful">
<!--children will inherit theme with overlay modifications-->
</LinearLayout>
</code></pre>
</section>
<section>
<blockquote><span style="color: lightskyblue">Стили</span> применяются для конечного элемента View, а их параметры резолвятся относительно темы</blockquote>
<p class="fragment" data-fragment-index="1">Возможны ситуации, когда на 1 вьюшке будет и тема и стиль</p>
</section>
<section>
<blockquote>Как правило <code>View</code> резолвит значения 1 раз, в момент создания.
<br><br>
Чтобы изменить тему - необходимо пересоздать <code>View</code>.</blockquote>
<p class="fragment" data-fragment-index="1">у <code>Activity</code> можно позвать метод <code>recreate()</code></p>
</section>
</section>
<section id="custom">
<section>
<h3>attrs.xml</h3>
<p class="fragment" data-fragment-index="1">Позволяют добавлять собственные атрибуты</p>
</section>
<section>
<blockquote><span style="color: yellow">attrs.xml</span> лучше подходят для семантики вашей предметной области, чем <span style="color: yellow">colors.xml</span></blockquote>
</section>
<section>
<h3>Именование ресурсов</h3>
<dl class="medium">
<dt class="fragment" data-fragment-index="1"><span style="color: yellow">colors.xml</span></dt>
<dd class="fragment" data-fragment-index="1"><span style="color: yellow">@color</span>/red, <br><span style="color: yellow">@color</span>/green_light, <br><span style="color: yellow">@color</span>/blue_dark</dd>
<dt class="fragment" data-fragment-index="2"><span style="color: lightskyblue;">attrs.xml</span></dt>
<dd class="fragment" data-fragment-index="2"><span style="color: lightskyblue">?attr</span>/colorPrimary, <br><span style="color: lightskyblue">?attr</span>/colorAccent, <br><i><span style="color: lightskyblue">?attr</span>/colorPremiumUser</i></dd>
<dt class="fragment" data-fragment-index="3">color/ & drawable/ <span style="color: orange">selectors</span></dt>
<dd class="fragment" data-fragment-index="3"><span style="color: orange">@color</span>/ic_edit_selector, <br><span style="color: orange">@drawable</span>/bg_button_primary, <br><span style="color: orange">@color</span>/text_primary_selector</dd>
</dl>
</section>
<section>
<h4>Кастомные атрибуты</h4>
<p style="color: orange;">attrs.xml</p>
<pre class="fragment" data-fragment-index="4"><code class="xml" data-trim contenteditable>
<declare-styleable name="Base.AppTheme">
<attr name="colorPrimaryLight" format="color|reference" />
<attr name="textColorDisabledDefault" format="color|reference" />
<attr name="ohmyButtonColorNormal" format="color|reference"/>
<attr name="ohmyButtonColorDisabled" format="color|reference" />
</declare-styleable>
</code></pre>
</section>
<section>
<h4>Кастомные атрибуты</h4>
<p class="medium">Дополнительные цвета</p>
<dl class="medium">
<dt style="color: lightskyblue">colorPrimaryLight</dt>
<dd class="fragment" data-fragment-index="1">Инверсный PrimaryDark, почему-то его нет</dd>
<dt style="color: lightskyblue">textColorDisabledDefault</dt>
<dt style="color: lightskyblue">ohmyButtonColorNormal</dt>
<dt style="color: lightskyblue">ohmyButtonColorDisabled</dt>
<dd class="fragment" data-fragment-index="2">Ожидамое поведение disabled</dd>
</dl>
</section>
</section>
<section id="ohmy">
<section>
<h2>Make AppCompat great again</h2>
</section>
<section>
<a href="https://github.com/avaytsekhovskiy/ohmy-theme">Готовые и предсказуемые Light/Dark темы</a>
<pre><code class="xml" data-trim contenteditable>
<style name="AppTheme.Light.Green">
<item name="colorPrimaryLight">@color/green_light</item>
<item name="colorPrimary">@color/green</item>
<item name="colorPrimaryDark">@color/green_dark</item>
<item name="colorAccent">@color/red_light</item>
<item name="colorControlActivated">@color/red</item>
</style>
<style name="AppTheme.Dark.Green">
<item name="colorPrimaryLight">@color/green_light</item>
<item name="colorPrimary">@color/green</item>
<item name="colorPrimaryDark">@color/green_dark</item>
<item name="colorAccent">@color/red_light</item>
<item name="colorControlActivated">@color/red</item>
</style>
</code></pre>
</section>
<section>
<a href="https://github.com/avaytsekhovskiy/ohmy-theme">Готовые и предсказуемые Light/Dark темы</a>
<img src="src/img/ad%20-%20light.png" width="25%">
<img src="src/img/ad%20-%20dark.png" width="25%">
</section>
<section>
<a href="https://github.com/avaytsekhovskiy/ohmy-theme">Исходники в открытом доступе</a>
<img src="src/img/github.png"/>
</section>
<section>
<a href="https://github.com/avaytsekhovskiy/ohmy-theme/releases/download/1.0.0-demo/app-ohmy-theme-debug.apk">Живая apk со сменой тем</a>
<img src="src/img/qr.png" width="50%"/>
</section>
<section>
<h4>Что внутри?</h4>
<ul>
<li class="fragment" data-fragment-index="1">Базовые темы <span style="background: grey"><span style="color: black">Dark</span>/<span style="color: white">Light</span></span></li>
<li class="fragment" data-fragment-index="2">Предсказуемый <span style="color: darkgrey">disabled</span></li>
<li class="fragment" data-fragment-index="3">Набор селекторов на все случаи жизни</li>
<li class="fragment" data-fragment-index="4">Фрагмент показывающий используемые цвета</li>
</ul>
</section>
<section>
<h4>Готовые ресурсы</h4>
<img src="src/img/ohmy%20-%20selectors.png" width="30%">
<img src="src/img/ohmy%20-%20ripple.png" width="30%">
</section>
<section>
<h4>Селекторы</h4>
<img src="src/img/ohmy%20-%20selectors%20(regular).png" width="40%">
<img src="src/img/ohmy%20-%20selectors%20(selectable).png" width="40%">
</section>
<section>
<h4>Ripple</h4>
<img src="src/img/background%20diff.gif" width="30%"/>
</section>
</section>
<section id="links">
<h2>Потыкать самому</h2>
<ul>
<li><p>Когда-нибудь опубилкую в виде библиотеки</p></li>
<li><a href="src/ohmy-res.zip">/src/res</a></li>
<li><a href="https://github.com/avaytsekhovskiy/ohmy-theme/releases/download/1.0.0-demo/app-ohmy-theme-debug.apk">example.apk</a></li>
<li><a href="https://github.com/avaytsekhovskiy/ohmy-theme">Github Source Code</a></li>
</ul>
<br>
<br>
<br>
<br>
<dl style="position: absolute; right: 0; bottom: 0">
<dd>Github: <a target="_blank" href="https://github.com/avaytsekhovskiy" style="color: yellow">avaytsekhovskiy</a></dd>
<dd>Telegram: <a target="_blank" href="https://t.me/o_Ohmy" style="color: lightskyblue">@o_Ohmy</a></dd>
</dl>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="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({
dependencies: [
{src: 'plugin/markdown/marked.js'},
{src: 'plugin/markdown/markdown.js'},
{src: 'plugin/notes/notes.js', async: true},
{
src: 'plugin/highlight/highlight.js', async: true, callback: function () {
hljs.initHighlightingOnLoad();
}
}
]
});
Reveal.configure({ pdfMaxPagesPerSlide: 1, pdfSeparateFragments: false });
</script>
</body>
</html>