https://github.com/akira-cn/fast-animation-frame
Cross-platform requestAnimationFrame. Super fast.
https://github.com/akira-cn/fast-animation-frame
Last synced: 2 months ago
JSON representation
Cross-platform requestAnimationFrame. Super fast.
- Host: GitHub
- URL: https://github.com/akira-cn/fast-animation-frame
- Owner: akira-cn
- Created: 2018-03-30T09:27:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-03T06:47:13.000Z (almost 7 years ago)
- Last Synced: 2025-01-17T22:11:57.924Z (4 months ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fast Animation Frame
Cross-platform requestAnimationFrame. Super fast.
```bash
npm i fast-animation-frame
``````js
const {requestAnimationFrame, cancelAnimationFrame} = require('fast-animation-frame')requestAnimationFrame(function step(t) {
// do sth.
})
```