This commit is contained in:
Alexander Popov 2022-02-02 23:48:30 +03:00
commit 7469301c1b
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
5 changed files with 136 additions and 0 deletions

19
.editorconfig Normal file
View File

@ -0,0 +1,19 @@
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{*.html,*.css,*.json}]
indent_style = tab
indent_size = 4
[humans.txt]
indent_style = tab
indent_size = 2
[*.js]
indent_style = space
indent_size = 2

BIN
bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

8
humans.txt Normal file
View File

@ -0,0 +1,8 @@
/* TEAM */
Chef: iiiypuk
Site: iiiypuk {at} fastmail.fm
Twitter: @_iiiypuk
Location: Russia
/* SITE */
Last update (Обновлено): 2022/02/02

109
index.html Normal file
View File

@ -0,0 +1,109 @@
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Клятва - 2 сезон</title>
<style>
body {
background-color: #fff;
background-image: url('bg.png');
background-repeat: repeat-x repeat-y;
font-family: sans-serif;
margin: 0;
padding: 0;
}
div.container {
max-width: 800px;
margin: 10px auto;
}
header {
background-color: #000;
color: #fff;
padding: 16px;
}
header p {
margin: 0;
}
nav p {
text-align: center;
font-weight: bold;
}
nav ul {
list-style-type: none;
text-align: center;
padding-left: 0;
}
nav li {
background-color: #ccc;
display: inline-block;
border-radius: 8px;
padding: 8px;
border: 2px solid #000;
margin: 0 8px;
cursor: pointer;
}
div.video {
text-align: center;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<p class="title">Специально для мамы с любовью &#9829;</p>
</header>
<div class="container">
<nav>
<p>Выбери серию =)</p>
<ul id="episodeList"></ul>
</nav>
<div class="video">
<p id="episodeName">170 серия</p>
<video id="video" controls>
</video>
</div>
</div>
<script type="text/javascript">
'use strict';
let episodesList = [169, 170, 171, 172, 173, 174];
window.onload = function() {
let episodeListElement = document.getElementById('episodeList');
episodesList.forEach(item => {
let episodeItem = document.createElement('li');
episodeItem.setAttribute('onclick', `changeEpisode("${item}");`);
episodeItem.innerText = item;
episodeListElement.appendChild(episodeItem);
});
}
function changeEpisode(episodeId) {
let episodeName = document.getElementById('episodeName');
let videoElement = document.getElementById('video');
// videoElement.style.display = "block";
episodeName.innerText = `${episodeId} серия`;
videoElement.textContent = '';
let videoSource = document.createElement('source');
videoSource.setAttribute('src', `https://iiiypuk.me/y/o/${episodeId}.mp4`);
videoSource.setAttribute('type', 'video/mp4');
videoElement.appendChild(videoSource);
videoElement.load();
}
</script>
</body>
</html>