Created
February 13, 2024 15:15
-
-
Save justforuse/ba6b67f35c62ad6d1f194e38c0df4beb to your computer and use it in GitHub Desktop.
Animation js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// refer: https://github.com/antfu/plum-demo/blob/main/src/App.vue | |
function frame() { | |
const tasks: Function[] = [] | |
pendingTasks = pendingTasks.filter((i) => { | |
if (Math.random() > 0.4) { | |
tasks.push(i) | |
return false | |
} | |
return true | |
}) | |
tasks.forEach(fn => fn()) | |
} | |
let framesCount = 0 | |
function startFrame() { | |
requestAnimationFrame(() => { | |
framesCount += 1 | |
if (framesCount % 3 === 0) | |
frame() | |
startFrame() | |
}) | |
} | |
startFrame() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment