Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
use-elapsed-time
Advanced tools
React hook to get the elapsed time in an animation using requestAnimationFrame
The only hook you need to perform JavaScript animations in React.
yarn add use-elapsed-time
or
npm install use-elapsed-time
import { useElapsedTime } from 'use-elapsed-time';
const MyComponent = () => {
const isPlaying = true;
const elapsedTime = useElapsedTime(isPlaying);
return elapsedTime;
};
const useElapsedTime = (
isPlaying: boolean,
config?: {
durationMilliseconds: number,
onComplete?: () => void,
isRepeated?: boolean
}
): number;
The first argument isPlaying
indicates if the loop to get the elapsed time is running or it is paused.
The second argument config
is optional and it makes sense when the animation duration durationMilliseconds
is defined. onComplete
callback will be fired when the duration is reached. If isRepeated
is set, the elapsed time loop will start over once the duration is reached.
The hook returns elapsed time in milliseconds.
import { useElapsedTime } from 'use-elapsed-time';
const isPlaying = true;
const durationMilliseconds = 5000;
const config = { durationMilliseconds };
const CountDownTimerComponent = () => {
const elapsedTime = useElapsedTime(isPlaying, config);
const remainingTime = Math.ceil((durationMilliseconds - elapsedTime) / 1000);
return <div>Remaining {remainingTime} seconds</div>;
};
import { useElapsedTime } from 'use-elapsed-time';
const easing = (t, b, c, d) => {
return c*((t=t/d-1)*t*t + 1) + b;
};
const isPlaying = true;
const start = 90;
const end = 300;
const durationMilliseconds = 3000;
const config = { durationMilliseconds };
const CountUpComponent = () => {
const elapsedTime = useElapsedTime(isPlaying, config);
const currentValue = easing(elapsedTime, start, end - start, durationMilliseconds);
return <div>{Math.round(currentValue)}</div>;
};
import { useElapsedTime } from 'use-elapsed-time';
const easing = (t, b, c, d) => {
return c*((t=t/d-1)*t*t + 1) + b;
};
// define the path by an array of cordinates [x, y]
const points = [[150,200],[151,201], ...];
const pointsLength = 530 - 1;
const isPlaying = true;
const durationMilliseconds = 4000;
const config = { durationMilliseconds, isRepeated: true };
const BounceAnimation = () => {
const elapsedTime = useElapsedTime(isPlaying, config);
const currentPoint = easing(elapsedTime, 0, pointsLength, durationMilliseconds) | 0;
const colorValue = easing(elapsedTime, 0, 255, durationMilliseconds) | 0;
const pointStyle = {
position: 'absolute',
left: points[currentPoint][0],
top: points[currentPoint][1],
width: 20,
height: 20,
transform: 'translate(-50%, -50%)',
borderRadius: '50%',
background: `rgba(${colorValue}, 0, ${255 - colorValue})`
};
return (
<div style={{ position: 'relative', width: 800, height: 600 }}>
<div style={pointStyle} />
</div>
);
};
FAQs
React hook to measure elapsed time using requestAnimationFrame
The npm package use-elapsed-time receives a total of 36,851 weekly downloads. As such, use-elapsed-time popularity was classified as popular.
We found that use-elapsed-time demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.