Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.06 KB

Readme.md

File metadata and controls

44 lines (29 loc) · 1.06 KB

raf

Build status Git tag NPM version Code style

Request animation frame (polyfilled if it doesn't exist)

Installation

$ npm install @f/raf

Usage

var raf = require('@f/raf')

raf(function () {
  element.scrollIntoView()
})

API

raf(fn)

  • fn - The function to be executed on the next animation frame

Returns: An integer id. Pass this to raf.cancel(id) if you want to cancel the frame before it happens.

License

MIT