0.0.8 • Published 3 years ago

@kissmybutton/motorcortex-svgdraw v0.0.8

Weekly downloads
201
License
MIT
Repository
github
Last release
3 years ago

motorcortex-svgdraw

The library provides the Draw effect which applies progressive rendering of svg paths. Just provide the target percentage (up to which length of the path you want to render) and the Effect will animate the svg path render up that point.

Demo

Installation

$ npm install --save @kissmybutton/motorcortex-svgdraw
# OR
$ yarn add @kissmybutton/motorcortex-svgdraw

Importing and loading

import MotorCortex from "@kissmybutton/motorcortex";
import SVGDDef from "@kissmybutton/motorcortex-svgdraw";
const SVGD = MotorCortex.loadPlugin(SVGDDef);

API

The Plugin exposes just one Effect, the Draw Effect.

Draw

Only svg path elements can be selected by Draw Effect. If you try to select any element of other type you'll get error. For each of the selected path elements the Effect will draw from the current length percentage of the path to the target, provided by the animated attribute cover

import MotorCortex from "@kissmybutton/motorcortex";
import SVGDDef from "@kissmybutton/motorcortex-svgdraw";
const SVGD = MotorCortex.loadPlugin(SVGDDef);

const draw = new SVGD.Draw({
    animatedAttrs: {
        cover: 1
    }
}, {
    selector: 'svg path',
    duration: 2000
});

The Effect of the example will fully draw all selected paths in 2000 milliseconds.

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago