Skip to content

Instantly share code, notes, and snippets.

@karbassi
Created December 7, 2018 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karbassi/eabd6f605fca9c5da7a7f7e0519d8494 to your computer and use it in GitHub Desktop.
Save karbassi/eabd6f605fca9c5da7a7f7e0519d8494 to your computer and use it in GitHub Desktop.
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