Skip to content

requestAnimationFrame

提供跨浏览器兼容的 requestAnimationFrame 函数,并使用 setTimeout 作为回退选项。

使用

ts
import { requestAnimationFrame } from 'rattail'

requestAnimationFrame(() => {
  console.log('请求了一帧')
})

参数

参数类型默认值
elHTMLElement

返回值

类型
Array<HTMLElement | Window>