1.0.2 ⢠Published 8 years ago
@maoosi/shapeshifter v1.0.2
Shapeshifter.js
ā” š š JS library to easily shift between different masking shapes.
Work in progress
Installation
Using NPM
npm i @maoosi/shapeshifter --saveUsing Yarn
yarn add @maoosi/shapeshifterBasic usage
<div id="el"></div>import Shapeshifter from '@maoosi/shapeshifter'
// create new shapeshifter
const shapeshifter = new Shapeshifter('#el', { /* options */ })
// on ready
shapeshifter.on('ready', () => {
    // shift into the a squared shape
    shapeshifter.shift([
        [0, 0],
        [1, 0],
        [1, 1],
        [0, 1]
    ])
})
// initiate
shapeshifter.init()Advanced usage
Masking an image
new Shapeshifter('#el', {
    image: 'my-image.jpg'
})Masking a colored shape
new Shapeshifter('#el', {
    color: 'rgba(102, 117, 255, 0.5)'
})Using shadows
The blur option for shadows is only working on browsers that support CSS filters.
new Shapeshifter('#el', {
    shadow: {
        color: 'rgba(0, 0, 0, 0.25)',
        translateX: '10px',
        translateY: '10px',
        blur: 8
    }
})Force display mode AND / OR shadow
let mode = 'auto' // `auto`, `color`, `image`
let shadow = true // `true`, `false`
shapeshifter.shift([
    [0, 0],
    [1, 0],
    [1, 1],
    [0, 1]
], mode, shadow)Destroy / Reset
shapeshifter.destroy()Chainable API with Wait.js
https://github.com/maoosi/wait.js
shapeshifter
    .shift(shape1)
    .wait(1000)
    .shift(shape2)
    .wait(500)
    .destroy()Browser Support
Fully supported by Evergreen Browsers (Edge, Opera, Safari, Firefox & Chrome) and IE 10+ browsers.
The blur option for shadows is only working on browsers that support CSS filters.
License
MIT Ā© 2017 Sylvain Simao