Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
MUSESTAR-Official committed Feb 12, 2025
1 parent 3356dd7 commit 27de5c4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file added files/kamitsubaki.webp
Binary file not shown.
15 changes: 14 additions & 1 deletion teleplay/VWP/2025.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,21 @@
<body>
<div class="video-container">
<div id="dplayer1"></div>
<img height="500" src="https://kamitsubaki.jp/wp-content/themes/kamitsubaki/_assets/images/logo_mark_sp.webp" alt="">
<img height="500" id="reloadImage" src="https://kamitsubaki.jp/wp-content/themes/kamitsubaki/_assets/images/logo_mark_sp.webp" alt="神椿">
</div>
<script>
let hasLoaded = false;
function reloadImage() {
if (hasLoaded) return;
const img = document.getElementById('reloadImage');
const src = img.src;
img.src = '';
img.src = src + '?t=' + new Date().getTime();
hasLoaded = true;
}

document.addEventListener('DOMContentLoaded', reloadImage, { once: true });
</script>
<div class="info-container">
<h1>V.W.P 3rd ONE-MAN LIVE「現象III-神椿市探訪中-」</h1>
<div class="divider">
Expand Down

0 comments on commit 27de5c4

Please sign in to comment.