【发布时间】:2017-07-19 17:58:54
【问题描述】:
我希望card 的顶部像底部一样动画。
全屏点击card并将邻居card推开。
我该怎么做:
这是我的代码:
animations: [
trigger('heroState', [
state('inactive', style({ height: '*', width: '*' })),
state('active', style({ position: 'absolute', top: '0', margin: '0', padding: '0', width: '100%', height: '100%' })),
transition('inactive <=> active', animate('5000ms ease-in-out'))
])
],
【问题讨论】:
-
这里有一个关于如何发布示例代码How to create a Minimal, Complete, and Verifiable example的提示,这将帮助您更快地得到答案。
标签: css angular animation typescript