This commit is contained in:
chris 2023-07-01 00:08:50 -04:00
parent bc6007c55e
commit cf278776b2
2 changed files with 52 additions and 1 deletions

View File

@ -50,7 +50,7 @@
style="display: block; z-index: 1" style="display: block; z-index: 1"
frameborder="0" frameborder="0"
></iframe> --> ></iframe> -->
<script defer src="/menu/menu.js"></script> <!-- <script defer src="/menu/menu.js"></script> -->
<div id="navContainer"></div> <div id="navContainer"></div>
<script> <script>
if ("serviceWorker" in navigator) { if ("serviceWorker" in navigator) {

51
mario/index.html Normal file
View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mario</title>
<style>
body {
background-color: #121212;
}
#video1 {
display: flex;
align-content: center;
justify-content: center;
margin: auto;
}
</style>
</head>
<body>
<div id="video1">
<video
id="video"
controls
controlslist="nodownload"
src="mario.mp4
"
type="video/mp4"
>
Your browser doesn't support embedded video. Sorry.
</video>
</div>
<script>
document.getElementById("video").addEventListener(
"loadedmetadata",
function () {
this.currentTime = localStorage.getItem("time");
},
false
);
// document.getElementById("video").currentTime = 50;
setInterval(function () {
localStorage.setItem(
"time",
document.getElementById("video").currentTime
);
console.log(document.getElementById("video").currentTime);
}, 10000);
</script>
</body>
</html>