-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.42 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Яндекс ШРИ</title>
</head>
<body>
<script>
// import json from "/build/assets/data.json" assert {type: "json"}
// // window.dataSortFunction = function (a, b) {
// return b.valueText.split(" ").shift() - a.valueText.split(" ").shift()
// }
window.onload = function() {
const pageTheme = getUrlVars('theme')
window.slideNum = getUrlVars('slide') ? getUrlVars('slide') - 1 : 0
const body = document.querySelector('body')
if (-1 < slideNum && slideNum <= 10) {
const alias = json[slideNum].alias
const data = json[slideNum].data
// data.users.sort(dataSortFunction)
//Добавляем тему слайду
if (pageTheme) {
body.classList.add('theme_' + (pageTheme === ('light' || 'dark') ? pageTheme : 'dark'))
} else {
body.classList.add('theme_dark')
}
body.insertAdjacentHTML('afterbegin', window.renderTemplate(alias, data))
} else {
alert('Такого номера слайда не существует. Пожалуйста, введите корректный номер слайда')
}
}
</script>
</body>
</html>