yemin_player/index.html

120 lines
2.4 KiB
HTML
Raw Normal View History

2022-02-02 23:48:30 +03:00
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2022-02-23 20:21:32 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-02-02 23:48:30 +03:00
<title>Клятва - 2 сезон</title>
2022-02-23 20:21:32 +03:00
2022-02-02 23:48:30 +03:00
<style>
2022-02-23 20:21:32 +03:00
@import url('/font/samsung-one-font.css');
2022-02-02 23:48:30 +03:00
body {
background-color: #fff;
background-image: url('bg.png');
background-repeat: repeat-x repeat-y;
2022-02-23 20:21:32 +03:00
font-family: 'SamsungOne', sans-serif;
2022-02-02 23:48:30 +03:00
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;
}
2022-02-23 20:21:32 +03:00
hr {
border: 1px solid #444;
}
2022-02-02 23:48:30 +03:00
</style>
</head>
<body>
<header>
<p class="title">Специально для мамы с любовью &#9829;</p>
</header>
<div class="container">
<nav>
<p>Выбери серию =)</p>
<ul id="episodeList"></ul>
</nav>
2022-02-23 20:21:32 +03:00
<hr>
2022-02-02 23:48:30 +03:00
<div class="video">
<p id="episodeName">&nbsp;</p>
2022-02-02 23:48:30 +03:00
<video id="video" controls>
</video>
</div>
</div>
<script type="text/javascript">
'use strict';
2022-02-23 21:06:52 +03:00
let episodesList = [177, 178]; // example
2022-02-02 23:48:30 +03:00
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);
});
2022-02-23 21:06:52 +03:00
changeEpisode(episodesList[0]);
2022-02-02 23:48:30 +03:00
}
function changeEpisode(episodeId) {
let episodeName = document.getElementById('episodeName');
let videoElement = document.getElementById('video');
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>