An open API service indexing awesome lists of open source software.

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.

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.
})
```