Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

mephraim/candid_canvas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Candid Canvas

What is Candid Canvas?

Creating an animation using the HTML Canvas element can be a chore. Keeping track of all of the elements you want to draw to the canvas and managing the status of the animation itself can get complicated very quickly.

But have no fear! The Candid Canvas library is designed to make the process of creating Canvas animations fun and easy!

Candid Canvas Supports

  • Scenes with many different drawing elements
  • Setting the duration for each individual scene of an animation
  • Multiple scenes per animation
  • Pausing and restarting animations
  • Looping animations
  • And much much more!

Candid Canvas won't

  • Add any special drawing tools to the Canvas
  • Work in Internet Explorer. Because the Canvas tag won't (yet).

Getting Started

Create an Animator

To create an animation with Candid Canvas, you need to first create an Animator that will manage the animation

var animator = CandidCanvas.createAnimator(yourCanvas);

The CandidCanvas.createAnimator takes in a Canvas element that will be used for the animation.

Make a Scene

Once you have your animator, you can create a new scene to add to the animator

var scene = CandidCanvas.createScene({ duration: 1000 });

The CandidCanvas.createScene method takes an options object that will be used to configure the scene. The duration option specifies duration, in milliseconds, of the scene being created.

You can add your new scene to the animation using the animator's addScene method

animator.addScene(scene);

Scenes will be played in the order that you add them to the animator. If you want to add multiple scenes at once, you can use the addScenes method

animator.addScenes(scene1, scene2);

The added scenes will be played in the order they were passed in to the method.

Add some elements

Candid Canvas scenes are made up of "elements". Each element is a JavaScript function will be called at each tick of the animation. Each element function takes in one parameter for the animator, which will be passed to the element when it is called. You can add an element to a scene using the addElement method

scene.addElement(function(anim) {
	var context = anim.context();
	var scene = anim.currentScene();
	
	// Do something with the context or current scene	
});

Elements will be executed in the order they were added to the scene. You can add multiple elements to a scene using the addElements method

scene.addElements(element1, element2);

Elements will be executed in the order they were passed to the addElements method.

Animate!

Once you've added elements to a scene, you're ready to start playing your animation

animator.play();

The play method will play through the whole animation once. If you'd like to loop the animation you can use the loop method

animator.loop();

You can also pause your animation

animator.pause();

And reset it back to the beginning

animator.reset();

When an animation is reset, it will also reset the current scene's status back to the beginning.

See the included demo for more usage examples!

About

Candid Canvas 1.0: Canvas tag animation library

Resources

License

Stars

Watchers

Forks

Packages

No packages published