dexteryy / ChoreoJS

An animation library which uses "stage" and "actor" as metaphors

Home Page:http://ozjs.org/ChoreoJS/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChoreoJS

  • An animation library which uses "stage" and "actor" as metaphors
  • Automatic switch between CSS transitions and JS tweening
  • Provide a flexible way to write asynchronous sequence of actions
  • Support CSS transform value

Usage

AMD and OzJS

Get the code

Add to your project as new dependency

Or download directly from Github

Dependencies

Examples

API and usage

var choreo = require('choreo');
  • choreo.config(opt) --
  • choreo.transform(elm, prop, value) --
  • choreo.Stage(name) --
  • choreo.Actor(opt|actors, stage) --
var stage = choreo('stageName[optional]'); // Singleton with stageName
  • stage.isPlaying() --
  • stage.isCompleted() --
  • stage.play() --
  • stage.pause() --
  • stage.complete() --
  • stage.cancel() --
  • stage.clear() --
  • stage.actor(opt) --
  • stage.group(actor, actor, ...) --
  • stage.follow() --
    var actor1 = stage.actor(elment, prop, duration, easeing, delay);
    var actor2 = stage.actor(option, option);
    var actorGroup = stage.group(actor1, actor2);
  • actor.enter(stage) --
  • actor.exit() --
  • actor.fork() --
  • actor.setto(value) --
  • actor.extendto(value) --
  • actor.reverse() --
  • actor.follow() --
    var promise = stage.follow(); // or actor1.follow(), actorGroup.follow()
  • promise.then() --
  • promise.done() --
  • promise.fail() --
  • promise.bind() --
  • ... -- see EventMaster

Under construction...

More References

See OzJS Project Homepage

Release History

See OzJS Release History

License

Copyright (c) 2010 - 2013 dexteryy
Licensed under the MIT license.

About

An animation library which uses "stage" and "actor" as metaphors

http://ozjs.org/ChoreoJS/


Languages

Language:JavaScript 100.0%