doodle-svg

0.1.14 • Public • Published

doodleSVG

Downloads Version License

doodleSVG is a javascript tool, its purpose is to create objects that handle normalized path (for path, line, circle, rect, ellipse and polygon) from 0 to 1, to easely handle drawing SVG line animation for anytype of SVG object. It can be use with any tween engine.

Inspired by

Examples

  1. Animate with TweenMax

Usage

git clone https://github.com/trinketmage/doodleSVG.git doodleSVG

How to

You can play with origin and end of each return iteration to do your desire doodle.

  • Animate one element
var doodle = new doodleSVG();
 
var el = document.querySelector("path");
var myDoodle = doodle.normalize(el);
 
// Default value for end is 0.
TweenMax.to(myDoodle, 5, {end: 1});
  • Animate a list of elements
var doodle = new doodleSVG();
 
var list = document.querySelectorAll("rect");
var myDoodles = doodle.normalizeGroup(list);
 
// Default value for end is 0.
TweenMax.to(myDoodles, 5, {end: 1});

Package Sidebar

Install

npm i doodle-svg

Weekly Downloads

6

Version

0.1.14

License

ISC

Unpacked Size

8.53 kB

Total Files

5

Last publish

Collaborators

  • trinketmage