0.0.5 • Published 3 years ago

@gdaythom/remnant v0.0.5

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

Remnant

Remnant is a node.js module for turning inline SVG images into garbled up animations.

How

npm install @gdaythom/remnant --save

var Remnant = require('remnant');

remnant('#something');

Here are all of the options, described in detail below.

var Remnant = require('remnant');

remnant('#something', {
    // Thickness of the line in pixels
    thickness: 8,
    // How far off the original path the lines are
    drift: 14,
    // Number of times the outline is drawn
    circuits: 2,
    // Colours to use and where to use them
    palette: {
      background: ['white', '#ffcc00'],
      stroke: 'black',
      fill: ['transparent', 'blue', '#ff4400']
    },
    // Animation frames per second
    refresh: 24,
    // Additional classes
    class: 'merlin'
});

Remnant was created by and is maintained by Thom Vincent.

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

4 years ago