angular-bounce
v0.0.3
Published
Angular library of CSS animations.
Downloads
32
Maintainers
Readme
Angular Bounce
Animate.css for Angular4+;
AOT compatible
Installation
npm install angular-bounce --save
Usage
import { BOUNCE_IN, BOUNCE_OUT } from 'angular-bounce';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
animations: [
trigger('heroState', [
transition('inactive => active', [
useAnimation(BOUNCE_IN)
]),
transition('active => inactive', [
useAnimation(BOUNCE_OUT)
])
])
]
})