mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 21:37:48 +01:00
pfft
This commit is contained in:
parent
02646279d1
commit
ad0c20300b
1 changed files with 5 additions and 16 deletions
|
@ -1776,7 +1776,6 @@ if (userID) {
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
let requestId;
|
let requestId;
|
||||||
let lastDraw;
|
|
||||||
|
|
||||||
const loopStart = () => {
|
const loopStart = () => {
|
||||||
requestId = window.requestAnimationFrame(loopStart)
|
requestId = window.requestAnimationFrame(loopStart)
|
||||||
|
@ -1798,17 +1797,9 @@ const draw = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Adjust the frame rate by changing the interval
|
|
||||||
const frameRate = 4; // Set the desired frame rate in milliseconds
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const drawLoop = () => {
|
const drawLoop = () => {
|
||||||
draw()
|
draw()
|
||||||
|
step = window.requestAnimationFrame(drawLoop)
|
||||||
setInterval(() => {
|
|
||||||
step = window.requestAnimationFrame(drawLoop);
|
|
||||||
}, 50);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const drawPause = () => {
|
const drawPause = () => {
|
||||||
|
@ -1817,12 +1808,10 @@ const drawPause = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const init = () => {
|
const init = () => {
|
||||||
AMvideo.addEventListener("loadeddata", drawLoop, false)
|
AMvideo.addEventListener("loadeddata", draw, false)
|
||||||
AMvideo.addEventListener("seeked", draw, false)
|
AMvideo.addEventListener("seeked", draw, false)
|
||||||
setInterval(function() {
|
AMvideo.addEventListener("play", drawLoop, false)
|
||||||
AMvideo.addEventListener("play", drawLoop, false);
|
AMvideo.addEventListener("pause", drawPause, false)
|
||||||
}, 50);
|
|
||||||
AMvideo.addEventListener("pause", drawPause, false)
|
|
||||||
AMvideo.addEventListener("ended", drawPause, false)
|
AMvideo.addEventListener("ended", drawPause, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1840,7 +1829,7 @@ window.addEventListener("unload", cleanup)
|
||||||
<style>
|
<style>
|
||||||
.video-player-container, #video {
|
.video-player-container, #video {
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
.popup {z-index: 1}
|
.popup {z-index: 1}
|
||||||
#ambient-canvas {
|
#ambient-canvas {
|
||||||
|
|
Loading…
Reference in a new issue