Angular2将动画绑定到伪元素

时间:2016-10-15 19:50:12

标签: angular angular-animations

我正在尝试使用Angular2动画系统,用于伪元素:before。根据动画流程,我需要定义动画状态:

animations: [
trigger('heroState', [
  state('inactive', style({
    backgroundColor: '#eee',
    transform: 'scale(1)'
  })),
  state('active',   style({
    backgroundColor: '#cfd8dc',
    transform: 'scale(1.1)'
  })),
  transition('inactive => active', animate('100ms ease-in')),
  transition('active => inactive', animate('100ms ease-out'))
])]

然后将其附加到DOM元素,如下所示:

<ul>
<li *ngFor="let hero of heroes"
    [@heroState]="hero.state"
    (click)="hero.toggleState()">
  {{hero.name}}
</li>

但是,我想将它附加到伪before元素。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

试试这个,这就是你想要的。

<style>
h1::before {
    content: url(animation.html);
}
</style>

animation.html文件

<ul>
<li *ngFor="let hero of heroes"
    [@heroState]="hero.state"
    (click)="hero.toggleState()">
  {{hero.name}}
</li>

希望这适合你。

有关此Using Javascript in CSS

的更多信息