use-apng-replay
v1.0.2
Published
React hook to replay APNG animations on demand
Downloads
409
Maintainers
Readme
use-apng-replay
React hook to replay APNG animations without re-fetching.
Install
npm install use-apng-replayUsage
const [src, replay] = useApngReplay('/animation.apng');
<img src={src} />
<button onClick={replay}>Replay</button>