2.0.1 • Published 6 years ago

metamorpher v2.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Metamorpher

Mutate SVG Paths in the DOM.

TL;DR

Modify an SVG Path in three steps: 1. Create a path object with new Path(element). 2. Modify the path object with the chainable scale, rotate, translate and transform methods. 3. Update the rendered path with the paint method.

Achieve complex path animation with a simple loop and the transform and interpolate methods. Suggested to use a minimal easing / animation package to add easings to your loops. Recommend to use VelocityJS since you may want to combine this with CSS animations.

For a full tutorial, see: Animating SVGs with Metamorpher and VelocityJS.

Installation

yarn add metamorpher

Include

Metamorpher supports AMD, CommonJS, ES6 import methods in addition to global script include. Since, Metamorpher has multiple exported classes and no default export, you have the option to selectively import classes from Metamorpher based on your needs. Most consumers of this package will only require the Path class and possibly the Point class.

ES6

import {Path, Instruction, Point, Edge} from 'metamorpher';

CommonJS

var Path = require('metamorpher').Path;
var Instruction = require('metamorpher').Instruction;
var Point = require('metamorpher').Point;
var Edge = require('metamorpher').Edge;

Global Script Include

<script src="metamorpher.js" />
<script>
  var Path = metamorpher.Path;
  var Instruction = metamorpher.Instruction;
  var Point = metamorpher.Point;
  var Edge = metamorpher.Edge;
</script>

Path Usage

Path, the main class that most consumers of this package will use, represents an SVG Path as a collection of Instructions. To start working with a Path, use the constructor: new Path().

new Path(input)

Constructor takes as input one of: 1. A Path SVGElement (in the DOM), 2. Another Path (this class) or, 3. A String representing SVG Path data (the d parameter of an SVG Path).

If the first option, Path SVGElement, is used then the path will already be attached to the same DOM element that was passed in for the pruposes of the paint method. If the other options are used, they can later be attached to a DOM element with the attach method or used as a parameter to the interpolate method.

path.attach(element)

Chainable Attach a path to the DOM so it can be painted.

path.detach()

Chainable Detatch a path from the DOM.

path.paint()

Chainable Update the rendered path in the DOM by setting the DOM Path element's d parameter. If the path is currently detached from the DOM, then no action will be performed.

path.scale(factor, origin)

Chainable Scale each instruction in the path by factor relative to the origin Point.

path.rotate(degrees, origin)

Chainable Rotate each instruction in the path by degrees relative to the origin Point.

path.translate(x, y)

Chainable Translate each instruction in the path by x in the x-coordinate and y in the y-coordinate.

path.transform(path)

Chainable Transform each instruction in the path by copying the point data from the corresponding instruction the path parameter. Use in conjunction with interpolate to morph one path into another. Unsupported behavior if path instruction lengths or point lengths don't match.

path.interpolate(startPath, endPath, progress)

Chainable Calculate and set the path to be the interpolated progress between startPath and endPath. Progress should be a decimal between 0 and 1 representing the percentage of interpolation. Critical for animating one path to become another path. Unsupported behavior if path lengths don't match.

path.longestEdge

Returns the longest straight Edge of the path.

Instruction Usage

new Instruction(arguments)

Constructor takes as arguments one of: 1. Another Instruction (this class) or, 2. An optional String representing the instruction type and zero or more Points.

The instruction type should be a single letter (ex: M, L, C, Z, etc.). See the Path Data Spec for more information on Path instructions.

instruction.scale(factor, origin)

Chainable Scale each point in the instruction by factor relative to the origin Point.

instruction.rotate(degrees, origin)

Chainable Rotate each point in the instruction by degrees relative to the origin Point.

instruction.translate(x, y)

Chainable Translate each point in the instruction by x in the x-coordinate and y in the y-coordinate.

instruction.transform(instruction)

Chainable Transform each point in the instruction to the same place in the SVG as corresponding point the instruction parameter. Use in conjunction with interpolate to morph one instruction into another. Unsupported behavior if instruction point lengths don't match.

instruction.interpolate(startInstruction, endInstruction, progress)

Chainable Calculate and set the instruction to be the interpolated progress between startPath and endPath. Progress should be a decimal between 0 and 1 representing the percentage of interpolation. Unsupported behavior if instruction point lengths don't match.

Point Usage

new Point(...)

Points can be constructed from: 1. Another Point or, 2. Zero, one or two Numbers representing x and y, respectively.

x and y are simply coordinates in the SVG viewbox.

point.scale(factor, origin)

Scale the point by factor relative to the origin Point.

point.rotate(degrees, origin)

Rotate the point by degrees relative to the origin Point.

point.translate(x, y)

Translate the point by x in the x-coordinate and y in the y-coordinate.

point.transform(point)

Copy the x and y coordinate from the point parameter.

point.interpolate(startPoint, endPoint, progress)

Calculate and set the point to be the interpolated progress between startPoint and endPoint. Progress should be a decimal between 0 and 1 representing the percentage of interpolation.

Edge Usage

edge.length

Calculate the length of the edge.

edge.angle

Calculate the angle of the edge. Resulting angle is expressed as a fraction (rise over run). The following table lists a sampling of degrees from the positive x-axis and the corresponding result from this function:

DegreesResult
00
300.5
451
602
90NaN
135-1
1800
2251
270NaN
315-1
2.0.1

6 years ago

2.0.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago