Skip to content

This is the class for group requestanimationframe watchers.

License

Notifications You must be signed in to change notification settings

CrazySquirrel/AnimationFrame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnimationFrame

npm version Code Climate Test Coverage Issue Count Donate

This is the class for signing several watcher on requestanimationframe.

Build

The repository contains pre-compiled files, but if you want to add your files and compile, then run the following commands in the repository folder.

  • npm install
  • npm run production

or

  • npm run development

The build required NodeJs version 6 or higher.

Usage

import AnimationFrame from "AnimationFrame.ts";

let animation = new AnimationFrame();

let ID = animation.subscribe(context,callback,arguments,ID);

or

let AnimationFrame = required("AnimationFrame.js");

let animation = new AnimationFrame();

let ID = animation.subscribe(context,callback,arguments,ID);
  • context - The context of the called function.
  • callback - The called function.
  • arguments - An array of arguments of the called function.
  • ID - ID which will be signed watcher. One ID can contain only one watcher.

The arguments and ID are optional. If you do not pass the ID, then the subscribe will return the generated ID, otherwise returns the passed ID.

About

This is the class for group requestanimationframe watchers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published