Files
phpstorm/js_workshop8/index.html
2025-02-06 12:28:24 +00:00

42 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS-Calc</title>
<link href="favicon.ico" rel="icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
</head>
<body class="d-flex bg-secondary-subtle justify-content-center">
<div id="playerContainer" class="p-0 container border rounded bg-white d-flex flex-column">
<video id="video" class="img-fluid shadow">
<source src="SampleVideo.mp4" type="video/mp4">
<p>This video is not supported in your browser</p>
</video>
<div id="trackBar" class="bg-primary"></div>
<div id="buttonContainer" class="container-fluid align-items-center d-flex gap-2">
<button id="pauseplay" class="btn"></button>
<div id="leftAlign" class="align-items-center ms-auto d-flex gap-3">
<div id="durationWrapper" class="align-items-center d-flex gap-1">
<p class="m-auto" id="durationElapsed"></p>
<p class="m-auto">|</p>
<p class="m-auto" id="durationTotal"></p>
</div>
<div id="volWrapper" class="align-items-center d-flex flex-row gap-2">
<label id="volIco" for="volBar"></label>
<input type="range" id="volBar" class="form-range w-100">
</div>
<button id="fullscreen" class="btn"></button>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous" defer></script>
<script src="index.js"></script>
</body>
<footer class="bg-dark-subtle fixed-bottom">
<div class="d-flex flex-row justify-content-center pt-3">
<p>Made by George Wilkinson @ 2025. Powered by Bootstrap and JS.</p>
</div>
</footer>
</html>