main_web/raya/index.html
2023-01-15 10:39:49 -05:00

39 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raya and the Last Dragon</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="/home/chrisserver/media/Movies/The Princess and the Frog (2009) [1080p]/The.Princess.and.the.Frog.2009.1080p.BrRip.x264.YIFY.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>