a2s.su/pages/rer2.html

111 lines
3.2 KiB
HTML
Raw Normal View History

2023-08-04 00:28:32 +03:00
<nav class="border-bottom mb-3" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#games">Games</a></li>
<li class="breadcrumb-item active" aria-current="page">
RE: Revelation 2 — Статус ежемесячных событий
<span class="text-nowrap">«Вторжение огромных тварей»</span>
</li>
</ol>
</nav>
<h3 class="text-center text-shadow">
RE: Revelation 2 — Статус ежемесячных событий
<span class="text-nowrap">«Вторжение огромных тварей»</span>
</h3>
2023-08-06 02:52:05 +03:00
<div>
2023-08-04 15:48:48 +03:00
<img
class="img-fluid shadow rounded m-3"
2023-08-06 02:52:05 +03:00
src="/content/images/2023/resident_evil_revelations_2_wallpaper_by_brendabirkin.jpg" />
2023-08-04 15:48:48 +03:00
<p class="text-center text-muted">
Изображение:
<a
class="text-reset"
href="https://www.deviantart.com/brendabirkin/art/Resident-Evil-Revelations-2-Wallpaper-521674087"
2023-08-06 01:49:23 +03:00
target="_blank">
2023-08-04 15:48:48 +03:00
Resident Evil Revelations 2 — Wallpaper by BrendaBirkin
</a>
</p>
</div>
2023-08-04 00:28:32 +03:00
<div class="card mb-3">
<div class="card-header">
2023-08-04 15:48:48 +03:00
<div class="d-flex justify-content-between placeholder-glow">
2023-08-04 00:28:32 +03:00
<span class="fw-bold">Invasion of the Huge Creatures No. 101</span>
2023-08-06 01:49:23 +03:00
<span id="rev2_time_remaining" class="placeholder col-1 rounded"></span>
2023-08-04 00:28:32 +03:00
</div>
</div>
<div class="card-body">
<h5 class="card-title text-center">
Осталось здоровья
<svg
class="text-danger svg-icon"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
2023-08-06 01:49:23 +03:00
stroke-linejoin="round">
2023-08-04 00:28:32 +03:00
<path
2023-08-06 01:49:23 +03:00
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" />
2023-08-04 00:28:32 +03:00
</svg>
</h5>
2023-08-04 15:48:48 +03:00
2023-08-06 03:20:32 +03:00
<div id="rev2_emenies"></div>
2023-08-04 00:28:32 +03:00
</div>
<div class="card-footer text-body-secondary">
2023-08-06 03:20:32 +03:00
Данные обновляются каждый час |
2023-08-04 00:28:32 +03:00
<a
class="text-reset"
href="https://game.capcom.com/residentevil/en/onlineevent-4_1108.html#windows"
target="_blank"
>Ссылка на страницу эвента</a
>
</div>
</div>
<p>
<svg
class="svg-icon align-text-top"
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
2023-08-06 01:49:23 +03:00
stroke-linejoin="round">
2023-08-04 00:28:32 +03:00
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="16" x2="12" y2="12" />
<line x1="12" y1="8" x2="12.01" y2="8" />
</svg>
Информация взята с ресурса RE.NET, страница
<a
class="text-reset fw-bold"
href="https://game.capcom.com/residentevil/en/onlineevent-rev2-windows.html"
>Online Events</a
>
</p>
2023-08-04 15:48:48 +03:00
<script type="module">
import { update_rev2 } from './js/rev2.js';
function autorun() {
2023-08-06 03:29:14 +03:00
if (!window.DEBUG) {
2023-08-06 01:36:52 +03:00
get_from_api((data) => {
update_rev2(data);
}, 'rev2_monsters');
2023-08-04 15:48:48 +03:00
setInterval(autorun, 120_000); // 2 minutes
} else {
2023-08-06 01:49:23 +03:00
console.log('INFO! Включена отладка, данные не загружается!\n' + 'Файл rer2.html');
2023-08-04 15:48:48 +03:00
}
}
autorun();
</script>