angular 12 动画执行完成事件

Fork Me On Github

angular 12 动画执行完成事件

需求

在执行完关闭动画移除组件

代码

第一步,定义一个动画

ts
                   
import { animate, state, style, transition, trigger } from '@angular/animations';

export const DialogAnimation = trigger('dialogOpen', [
    state('open', style({
        transform: 'translate3d(0, 0, 0)',
        opacity: 1,
    })),
    state('closed', style({
        transform: 'translate3d(0, -1000px, 0)',
        opacity: 0,
    })),
    transition('* => closed', [
        animate('1s')
    ]),
    transition('* => open', [
        animate('0.5s')
    ]),
]);
12345678910111213141516171819

第二步,使用动画

ts
            

@Component({
    selector: 'app-dialog-confirm',
    templateUrl: './dialog-confirm.component.html',
    styleUrls: ['./dialog-confirm.component.scss'],
    animations: [
        DialogAnimation,
    ],
})
export class DialogConfirmComponent {
    public visible = true;
}
123456789101112
html
  
<div class="dialog-box" [@dialogOpen]="visible ? 'open' : 'closed'">
</div>
12

第三步,加上动画事件

html
  
<div class="dialog-box" [@dialogOpen]="visible ? 'open' : 'closed'" (@dialogOpen.done)="animationDone($event)">
</div>
12

(@动画名.start) 表示动画开始执行

(@动画名.done) 表示动画执行完成

ts
                     
import { AnimationEvent } from '@angular/animations';

@Component({
    selector: 'app-dialog-confirm',
    templateUrl: './dialog-confirm.component.html',
    styleUrls: ['./dialog-confirm.component.scss'],
    animations: [
        DialogAnimation,
    ],
})
export class DialogConfirmComponent {
    public visible = true;

    public animationDone(event: AnimationEvent) {
        // 获取状态
        if (event.toState !== 'closed') {
            return;
        }
        // 表示关闭动画已经执行完成
    }
}
123456789101112131415161718192021
点击查看全文
标签: angular
0 439 0
在 angular 项目中实现对页面的访问控制
按下回车键,焦点移动到下一个表单或提交表单
使用ng-template 显示tree结构数据
使用 ViewContainerRef.createComponent 替代 ComponentFactoryResolver
angular 12使用 KaTex 显示 AsciiMath 格式的公式
42.6 ms
系统信息
Execution time42.6 ms
CPU usage user + system63 % + 7 %
Peak of allocated memory7.16 MB
Included files227
Classes + interfaces + traits141 + 29 + 26
Your IP18.221.150.61
Server IP172.21.0.9
HTTP method / response codeGET / 200
PHP8.4.2
Zodream5.1.0
Servernginx/1.27.3
运行信息
start0.0 ms
match route15.0 ms
controller response3.6 ms
db engine init6.3 ms
db engine end0.6 ms
db init end0.0 ms
view render7.1 ms
end42.8 ms
Queries(13)
[0.3ms] SELECT * FROM `blog` WHERE id = ? LIMIT 1
[0.25ms] SELECT * FROM `blog_term`
[0.6ms] SELECT term_id,COUNT(*) as count FROM `blog` WHERE parent_id = ? GROUP BY term_id
[0.43ms] SELECT id,language FROM `blog` WHERE parent_id = ?
[0.2ms] SELECT `tag_id` FROM `blog_tag_relationship` WHERE blog_id = ?
[0.17ms] SELECT id,name FROM `blog_tag` WHERE id in (?)
[0.17ms] SELECT `blog_id` FROM `blog_tag_relationship` WHERE tag_id in (?) and blog_id <> ?
[0.49ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE publish_status = ? and id in (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) and language = ? ORDER BY created_at DESC LIMIT 5
[0.19ms] SELECT `content`,`name` FROM `blog_meta` WHERE blog_id = ?
[0.2ms] SELECT id,name,avatar FROM `user` WHERE id in (?)
[0.24ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id < ? and language = ? and publish_status = ? ORDER BY id DESC LIMIT 1
[0.22ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id > ? and language = ? and publish_status = ? ORDER BY id ASC LIMIT 1
[0.21ms] SELECT * FROM `ad_position` WHERE code = ? and status = ? LIMIT 1
Views(5)
[Rendered] Module/Blog/UserInterface/layouts/header.php : 0.44ms
[Rendered] Module/Blog/UserInterface/Home/content.php : 2.66ms
[Rendered] Module/Blog/UserInterface/layouts/footer.php : 0.06ms
[Rendered] Module/Blog/UserInterface/Home/detail.php : 7.97ms
[Rendered] UserInterface/Home/layouts/main.php : 1.04ms