已经引入了animation这个组件,
html里写了
<div class="content" [@contentimg]="contentimg"></div>
在@domponent也写了({
animations:[
trigger('contentimg', [
state('inactive', style({
transform: 'rotate(0deg)'
})),
state('active', style({
transform: 'rotate(360deg)'
}))
])
]
})
现在是没有效果,也不报错