我需要幫助ng2動畫。我需要準備基於此的簡單的懸停效果:Angular2動畫簡單懸停,沒有任何狀態變化
@Component({
selector: 'category',
template : require('./category.component.html'),
styleUrls: ['./category.component.scss'],
animations: [
trigger('albumState', [
state('inactive', style({
bottom: '0px'
})),
state('active', style({
bottom: '200px'
})),
transition('inactive => active', animate('100ms ease-in')),
transition('active => inactive', animate('100ms ease-in'))
])
]
})
我需要一個提示如何將它分配給模板?在Ng2 Docs上,我們有基於對象參數的實現。我不需要我的
item/object/album
任何參數從的類別發生變化,只是想分配動畫模板。
問候! Greg