New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

animaze

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

animaze

Super tiny animation library

0.0.2
Version published
Weekly downloads
12
33.33%
Maintainers
1
Weekly downloads
 
Created

animaze

Supersmall animation library. [AMD is supported.]

npm install --save animaze

import animaze from 'animaze';

const animazeOpacity = () => animaze({
    onTick: { v => myDiv.style.opacity = v; }, // v is varied from 0 to 1
                                               // during animation
});

const animazeScroll = () =>  animaze({
    onTick: { window.scrollTo(0, 200 * v) },
    duration: 500, // default is 240
    ease: k => 0.5 * (1 - Math.cos(Math.PI * k)), // this is default one
});

animazeOpacity().then(animazeScroll); // animaze returns Promise

Keywords

FAQs

Package last updated on 31 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts