Skip to content

Instantly share code, notes, and snippets.

@savitapatel
savitapatel / Animation.js
Last active March 9, 2023 18:19
Animation using requestAnimationFrame
import React from 'react';
export function Animation() {
const animationByInterval = () => {
// Animation using setInterval
const start = Date.now();
const animatedText = document.querySelector('.myDiv');
const timer = setInterval(() => {
const interval = Date.now() - start;