码迷,mamicode.com
首页 > 其他好文 > 详细

angular2 如何使用animate实现动画效果

时间:2018-02-26 16:17:00      阅读:1116      评论:0      收藏:0      [点我收藏+]

标签:signal   style   down   one   exp   html   pos   angular2   sig   

首先要在Component里引入对应的组件:

immport { trigger, state, style, animate, transition } from "@angular/animations";

然后就可以在你@Component注入器写你的animation代码

@Component({
    selector: "hero",
    templateUrl: "./hero.html",
    styleUrls: ["./hero.scss"],
    encapsulation: ViewEncapsulation.None,
    animations: [
        trigger("signal",[
            state("hide", style({
                "height": 0,
                 "background-color": "green"
            })),
            state("show": style({
                "height": "100px",
                "background-color": "yellow"
            })),
            transition("*=>*",animate(500))
        ])
    ]    
})

声明signal

export class hero {
    public signal: string;
}

html的结构

<div [@signal]="signal"></div>
<button (click)="hide()">hide</button>
<button (click)="show()">show</button>

最后在创建hide、show方法触发就可以了

hide() {
    this.signal = "hide"
}

show() {
    this.signal = "show"
}

angular2 如何使用animate实现动画效果

标签:signal   style   down   one   exp   html   pos   angular2   sig   

原文地址:https://www.cnblogs.com/huayuanp/p/8473353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!