Compare commits

..

No commits in common. "49e7d8d356c09cbb99774d99a31058e19c7eb479" and "9ebc9508fac578a9f100c4fe3460162e910d172d" have entirely different histories.

2 changed files with 7 additions and 8 deletions

View File

@ -1 +0,0 @@
did=did:plc:rxzrxazusnnwwun63thmwapb

View File

@ -10,7 +10,6 @@
<link href="style.css" rel="stylesheet">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<div class="overflow-auto d-flex flex-column dvh-100">
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark border-bottom">
@ -60,7 +59,7 @@
<div class="carousel-item active">
<div class="carousel-fit">
<div class="ratio ratio-16x9 d-block">
<iframe src="https://www.youtube.com/embed/XxUMn7iG4YM?si=ER9NUp7lmwWF25rx&enablejsapi=1&rel=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen anonymous></iframe>
<iframe src="https://www.youtube.com/embed/XxUMn7iG4YM?si=ER9NUp7lmwWF25rx&enablejsapi=1&rel=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
<div class="carousel-caption d-none d-md-block text-light bg-black mb-3">
@ -188,11 +187,12 @@
});
</script>
<script>
$(document).ready(function() {
$('#gameDemoCarousel').on('slide.bs.carousel', function(event) {
(function() {
// Executes when DOM available
document.getElementById('gameDemoCarousel').on('slide.bs.carousel', function(event) {
players[event.from].pauseVideo();
});
});
})();
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
@ -210,9 +210,9 @@
}
function onPlayerStateChange(event) {
if (event.data == YT.PlayerState.PLAYING || event.data == YT.PlayerState.BUFFERING) {
$("#gameDemoCarousel").carousel('pause');
document.getElementById("gameDemoCarousel").carousel('pause');
} else {
$("#gameDemoCarousel").carousel();
document.getElementById("gameDemoCarousel").carousel();
}
}
</script>