Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Popov f0a482475b
change video url 2024-03-31 20:48:14 +03:00
Alexander Popov bbaedae161
change font links 2024-03-31 20:44:02 +03:00
3 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
@font-face {
font-family: 'SamsungOne';
src:
url('SamsungOne-400.woff2') format('woff2'),
url('SamsungOne-400.woff') format('woff'),
url('SamsungOne-400.ttf') format('truetype');
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.woff2') format('woff2'),
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.woff') format('woff'),
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;

View File

@ -5,4 +5,4 @@ Twitter: @_iiiypuk
Location: Russia
/* SITE */
Last update (Обновлено): 2022/02/27
Last update (Обновлено): 2024/03/31

View File

@ -27,7 +27,7 @@
<script>
'use strict';
let episodesList = [270, 271, 272, 273, 274, 275, 276]; // episodes
let episodesList = [280, 281, 282, 283]; // episodes
window.onload = function () {
let episodeListElement = document.getElementById('episodeList');
@ -47,7 +47,7 @@
videoElement.textContent = '';
let videoSource = document.createElement('source');
videoSource.setAttribute('src', `https://a2s.su/y/o/${episodeId}.mp4`);
videoSource.setAttribute('src', `https://iiiypuk.me/y/o/${episodeId}.mp4`);
videoSource.setAttribute('type', 'video/mp4');
videoElement.appendChild(videoSource);
videoElement.load();