文件名称:raf-schd:使用requestAnimationFrame进行速率限制的调节功能
文件大小:101KB
文件格式:ZIP
更新时间:2024-05-19 18:23:27
JavaScript
raf-schd 一个使用限制调用函数的速率的throttle函数。 有关限速功能的背景信息,请参阅 import rafSchd from 'raf-schd' ; const expensiveFn = arg => { //... console . log ( arg ) ; } ; const schedule = rafSchd ( expensiveFn ) ; schedule ( 'foo' ) ; schedule ( 'bar' ) ; schedule ( 'baz' ) ; // animation frame fires // => 'baz' 为什么? raf-schd支持您希望限制基于requestAnimationFrame调用函数的速率的用例。 与标准的throttle功能不同, raf-schd使用requestAnimationFra
【文件预览】:
raf-schd-master
----.flowconfig(71B)
----rollup.config.js(972B)
----yarn.lock(200KB)
----src()
--------index.js(793B)
----.babelrc(101B)
----flow-typed()
--------npm()
----.travis.yml(103B)
----LICENSE(1KB)
----test()
--------index.spec.js(5KB)
----.prettierrc(105B)
----README.md(4KB)
----.gitignore(92B)
----CHANGELOG.md(214B)
----package.json(2KB)