forked from naumen-student/naumen.scala.course.2023.autumn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (96 loc) · 3.9 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ZIO. Асинхронность и многопоточность. Управление ресурсами</title>
<meta name="description" content="ZIO. Асинхронность и многопоточность. Управление ресурсами">
<meta name="author" content="Roman Dengin">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<!-- 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) ? 'naumen-custom-css/pdf.css' : 'naumen-custom-css/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css" id="theme">
<link rel="stylesheet" href="naumen-custom-css/vs.css" id="highlight-theme">
<link rel="stylesheet" type="text/css" href="naumen-custom-css/paper.css">
<link rel="stylesheet" href="naumen-custom-css/custom.css">
<style type="text/css">
.hljs-ln {
border-collapse: collapse
}
.hljs-ln td {
padding: 0
}
.hljs-ln-n:before {
content: attr(data-line-number)
}
h1 {
font-size: 68pt !important;
}
h2 {
font-size: 58 !important;
}
.naumen {
color: orangered !important;
}
</style>
</head>
<body style="transition: transform 0.8s ease 0s;">
<div class="reveal slide center" role="application" data-transition-speed="default"
data-background-transition="fade">
<div class="footer">
<span class="corp-name"><b>NAUMEN </b></span>
</div>
<!-- Тут подключать md со слайдами -->
<div class="slides"
style="width: 960px; height: 700px; inset: 50% auto auto 50%; transform: translate(-50%, -50%) scale(1.20986);"
googl="true">
<section data-markdown="markdown.md" data-separator="^\n---\n"></section>
</div>
<!-- -->
<div class="progress" style="display: block;"><span style="width: 0px;"></span></div>
<aside class="controls" style="display: none;">
<div class="navigate-left"></div>
<div class="navigate-right enabled"></div>
<div class="navigate-up"></div>
<div class="navigate-down"></div>
</aside>
<div class="pause-overlay"></div>
<div style="position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px);"
id="aria-status-div" aria-live="polite" aria-atomic="true">
Scala collection
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
slideNumber: true,
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
window.addEventListener("mousedown", handleClick, false);
window.addEventListener("contextmenu", function (e) {
e.preventDefault();
}, false);
function handleClick(e) {
e.preventDefault();
if (e.button === 0) Reveal.next();
if (e.button === 2) Reveal.prev();
}
</script>
</body>
</html>