JSFiddle - React, Tailwind, and code Playground
by amindunited
JavaScript
const start = performance.now();
const duration = 2000;
const animate = (timeStamp) => {
const now = performance.now()
const value = (now - start) / duration;
console.log('🐕', now, start, value);
}
requestAnimationFrame(animate)