yemin_player/index.html

110 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>