# animaze

> Super tiny animation library

Latest version **0.0.5** (published 2016-09-05) · ISC license · 0 weekly downloads

## Install

```sh
npm install animaze
pnpm add animaze
yarn add animaze
bun add animaze
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2016-09-05 |
| First published | 2016-07-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Andy Kogut |
| Maintainers | andykog |
| Keywords | animation, js |

## Links

- npm: https://www.npmjs.com/package/animaze
- Repository: https://github.com/andykog/animaze
- Homepage: https://github.com/andykog/animaze#readme
- Issues: https://github.com/andykog/animaze/issues
- npm.io page: https://npm.io/package/animaze

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 0.0.5 (latest) — 2016-09-05
- 0.0.4 — 2016-08-07
- 0.0.3 — 2016-08-01
- 0.0.2 — 2016-07-31
- 0.0.1 — 2016-07-30

## README

animaze
-------

Supersmall animation library.

`npm install --save animaze`

```js
import animaze from 'animaze';
// Tip: If you are not using webpack/node.js you can use UMD version:
// animaze/lib/animaze.umd.js

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

const animazeScroll = () =>  animaze({
    tick: v => 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

```

---
_Source: https://npm.io/package/animaze · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
