1.2.1 • Published 8 years ago

ng2-animate v1.2.1

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

Description

Angular2 animations, inspired by Animate.css.

Install

npm install ng2-animate --save

Usage

Entering and Leaving

import { animateFactory } from 'ng2-animate';

@Component({
    selector: 'app',
    template: require('./app.html'),
    animations: [animateFactory(1000, 200, 'ease-in')]
})
export class AppComponent{
    show: boolean = true;
    list: string[] = ['xxx', 'yyy'];
    onAdd() {
        this.list.push('zzz');
    }
    onRemove(i) {
        this.list.splice(i, 1);
    }
}
<p [@animate]="'fadeIn'" *ngIf="show">fadeIn</p>
<button (click)="show = !show">toggle</button>


<button (click)="onAdd()">add</button>
<ul>
    <li *ngFor="let item of list;let i = index;" [@animate]="'fadeInLeft'">
        {{item}}
        <button (click)="onRemove(i)">X</button>
    </li>
</ul>

Replace With hidden

<p [@animate]="state">Hello World</p>
<button (click)="state = 'fadeOutDown'">hide</button>

Params

animateFactory(1000, 200, 'ease-in')

duration

the duration of the animation

  • type: string | number
  • optional, default value is 500ms

delay

the delay of the animation

  • type: string | number
  • optional, default value is 0

easing

the easing function of the animation

  • type: string
  • optional, default value is linear

Support Animations

see online demo https://yuyang041060120.github.io/ng2-animate

click the top title and every element.

License

MIT