All Projects → weiying-shenzhen → Raf Plus

weiying-shenzhen / Raf Plus

requestAnimationFrame with queue management

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Raf Plus

Gita
Manage many git repos with sanity 从容管理多个git库
Stars: ✭ 865 (+1366.1%)
Mutual labels:  management
Toodles
Project management directly from the TODOs in your codebase
Stars: ✭ 963 (+1532.2%)
Mutual labels:  management
Enterprisealrobot
An anime themed telegram group management bot
Stars: ✭ 49 (-16.95%)
Mutual labels:  management
Falko Api
📈 Falko API: Plataform for agile projects management 📊
Stars: ✭ 13 (-77.97%)
Mutual labels:  management
Vector Test Harness
End-to-end test harness for the Vector observability data router
Stars: ✭ 32 (-45.76%)
Mutual labels:  management
Lychee V3
A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.
Stars: ✭ 1,007 (+1606.78%)
Mutual labels:  management
Auto Cpufreq
Automatic CPU speed & power optimizer for Linux
Stars: ✭ 843 (+1328.81%)
Mutual labels:  management
Nitro
A discord bot
Stars: ✭ 56 (-5.08%)
Mutual labels:  management
Electra
A desktop application for test account managment
Stars: ✭ 32 (-45.76%)
Mutual labels:  management
Hubblemon
Stars: ✭ 48 (-18.64%)
Mutual labels:  management
Falko
📈 Falko (Front-End): Platform for agile projects management 📊
Stars: ✭ 14 (-76.27%)
Mutual labels:  management
Borealis Server Manager
Utility designed to facilitate the deployment, management, and control of various kinds of dedicated gameservers.
Stars: ✭ 31 (-47.46%)
Mutual labels:  management
Awesome Cto
A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups
Stars: ✭ 10,834 (+18262.71%)
Mutual labels:  management
Merit
价值和成果管理系统
Stars: ✭ 12 (-79.66%)
Mutual labels:  management
Ricerous
The diary of ricers.
Stars: ✭ 53 (-10.17%)
Mutual labels:  management
Ansible Role Docker
Ansible Role - Docker
Stars: ✭ 845 (+1332.2%)
Mutual labels:  management
Spionio
Lightweight focus group management platform that can capture and replay user interaction on your site and improve the UX in everything you build
Stars: ✭ 40 (-32.2%)
Mutual labels:  management
Manageiq
ManageIQ Open-Source Management Platform
Stars: ✭ 1,089 (+1745.76%)
Mutual labels:  management
Nfvo
Repository containing the source code of the NFVO
Stars: ✭ 55 (-6.78%)
Mutual labels:  management
Unstated
State so simple, it goes without saying
Stars: ✭ 7,785 (+13094.92%)
Mutual labels:  management

raf-plus

Build Status

raf-plus is window.requestAnimationFrame with queue management, which will only invokes the passed function at most once per animation frame.

可观看中文文档

Reason

Also note that multiple calls to requestAnimationFrame with the same callback (before callbacks are invoked and the list is cleared) will result in multiple entries being in the list with that same callback, and thus will result in that callback being invoked more than once for the animation frame. -- w3c

For example:

const animation = () => {
    // A animation function
}

document.addEventListener('scroll', e => requestAnimationFrame(animation), false)

The scroll event may fire more than once within one frame, so the animation function may be called more than once before next repaint, but repetitively call animation at one animation frame is unnecessary and waste of resources!!!

The raf-plus help you manage requestAnimationFrame's queue by ignoring the duplicate callback function in same animation frame. For comparison:

import { requestAnimationFrame } from 'raf-plus'
const animationTwice = () => console.log('I will be invoked twice!')
const animationOnce = () => console.log('Although call twice, I will be invoked once')

// call same animation within one animation frame lead to animation twice
window.requestAnimationFrame(animationTwice)
window.requestAnimationFrame(animationTwice)

// call same animation within one animation frame but only invoke once
requestAnimationFrame(animationOnce)
requestAnimationFrame(animationOnce)

Install

$ npm install --save raf-plus

or

$ yarn add raf-plus

Usage

The raf-plus provides two methods requestAnimationFrame and cancelAnimationFrame. They keep the same API as window.requestAnimationFrame and window.cancelAnimationFrame. Therefore, It is costless to switch from native's to raf-plus's.

requestAnimationFrame(callback)

The same as requestAnimationFrame. Be aware that raf-plus uses === operator to compare two callbacks, so passing anonymous function won't invoke the management!

const { requestAnimationFrame } from 'raf-plus'

const animation = timeStamp => {
    // animation
}

// animation will be invoked once within one frame
requestAnimationFrame(animation)
requestAnimationFrame(animation)

// animation will be invoked twice cause the function are not equal
requestAnimationFrame(timeStamp => { /* animation */})
requestAnimationFrame(timeStamp => { /* animation */})

cancelAnimationFrame(requestID)

The same as cancelAnimationFrame.

const { requestAnimationFrame, cancelAnimationFrame } from 'raf-plus'

const animation = timeStamp => {
    // animation
}
const requestId = requestAnimationFrame(animation)
cancelAnimationFrame(requestId)

Contributing

  • ⇄ Pull requests and ★ Stars are always welcome.
  • For bugs and feature requests, please create an issue.

Licence

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].