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

animaze

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

animaze

Supersimple animation library

0.0.1
Source
npm
Version published
Weekly downloads
17
-58.54%
Maintainers
1
Weekly downloads
 
Created
Source

animaze

Supersmall animation library. [AMD is supported.]

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 250
    ease: k => 0.5 * (1 - Math.cos(Math.PI * k)), // this is default one
});

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

Keywords

animation

FAQs

Package last updated on 30 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