Calculator Tools Calculator Tools
Create

PawPKG DVD Menu

Nov 13, 2023

About this app

DVD menu for episodes 3981-4134 of PawPKG series

PawPKG DVD Menu PawPKG DVD Menu 🐾 Play Intro 🎬 Select Episode: Choose...

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>PawPKG DVD Menu</title>
<meta name="description" content="DVD menu for episodes 3981-4134 of PawPKG series">
<meta name="keywords" content="PawPKG, DVD Menu, Episodes 3981-4134, Animation">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">

<style>
body {
background: linear-gradient(45deg, #3f87a6, #ebf8e1, #f69d3c);
background-size: 600% 600%;
animation: gradient 16s ease infinite;
}

@keyframes gradient {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}

.intro-scene {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
}
</style>

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
var episode = 3981;
var introPlaying = false;

document.getElementById('play-intro').addEventListener('click', function() {
if (!introPlaying) {
introPlaying = true;
document.getElementById('intro-scene').style.display = 'block';
setTimeout(function(){
document.getElementById('intro-scene').style.display = 'none';
introPlaying = false;
}, 20000); // Intro lasts 20 seconds
}
});

document.getElementById('episode-select').addEventListener('change', function() {
episode = this.value;
});
});
} catch (error) {
throw error;
}
</script>
</head>
<body>
<div id="main-container" class="container">
<h1 class="text-center mt-5">PawPKG DVD Menu 🐾</h1>
<div class="text-center mt-5">
<button id="play-intro" class="btn btn-lg btn-primary">Play Intro 🎬</button>
</div>

<div class="mt-5">
<label for="episode-select">Select Episode:</label>
<select id="episode-select" class="form-select">
<option selected>Choose...</option>
<script>
for(var i = 3981; i <= 4134; i++) {
document.write('<option value="'+i+'">Episode '+i+'</option>');
}
</script>
</select>
</div>

<div id="intro-scene" class="intro-scene">
<!-- Animation goes here -->
</div>
</div>
</body>
</html>