我希望card
的頂部像底部一樣生成動畫。Angular2推卡動畫?
使其全屏當點擊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'))
])
],
https://plnkr.co/edit/uqqYXCc1ZGv5SMtBcCM5?p=preview
這裏就如何發佈示例代碼小費[如何創建最小,完整和可驗證示例](http://stackoverflow.com/help/mcve),這將幫助您更快獲得答案。 –