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

ionic list加载淡出淡入效果

时间:2019-07-18 20:00:53      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:temp   animation   book   selector   arp   css   highlight   ionic   rom   

test.ts

import {trigger, style, animate, transition} from ‘@angular/animations‘;

@Component({
    selector: ‘booking‘,
    templateUrl: ‘./booking.html‘,
    styleUrls: [‘./booking.scss‘],
    animations: [
        trigger(
            ‘enterAnimation‘, [
                transition(‘:enter‘, [
                    style({opacity: 0}),
                    animate(‘500ms‘, style({opacity: 1}))
                ]),
                transition(‘:leave‘, [
                    // style({opacity: 1}),
                    // animate(‘100ms‘, style({opacity: 0}))
                ])
            ]
        )
    ]
})

  test.html

<ion-list *ngFor="let item of bookingList"  [@enterAnimation]>
</ion-list>

  

ionic list加载淡出淡入效果

标签:temp   animation   book   selector   arp   css   highlight   ionic   rom   

原文地址:https://www.cnblogs.com/amanda-man/p/11209283.html

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