Created
December 7, 2018 17:15
-
-
Save karbassi/eabd6f605fca9c5da7a7f7e0519d8494 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var start = null; | |
function step(timestamp) { | |
// console.log(timestamp); | |
if (!start) { | |
start = timestamp; | |
} | |
var progress = timestamp - start; | |
if (progress > 1000) { | |
console.log("moveRainDropDown"); | |
start = timestamp; | |
} | |
window.requestAnimationFrame(step); | |
} | |
window.requestAnimationFrame(step); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment