0
角度4のコンポーネントでsvgをアニメートしたいと思います。 svgコンポーネント内で異なるIDを取得し、順次アニメーション化するにはどうすればよいですか?角度4のsvgのアニメーション要素を切り替える
クリックイベントで私のSVGの1つの要素で1つのアニメーションをトリガーすることはできますが、これをどのようにページロードでトリガーしますか?
私は、次のcomponent.tsコードを持っている:コンポーネントの
import { Component, OnInit } from '@angular/core';
import { DataService } from '../data.service';
import { trigger, state, style, transition, animate, keyframes } from '@angular/animations';
@Component({
selector: 'app-splash',
templateUrl: './splash.component.html',
styleUrls: ['./splash.component.css'],
animations: [
trigger('myAwesomeAnimation', [
state('offscreen', style({
transform: 'translateY(-50px)',
})),
state('onscreen', style({
transform: 'translateY(50px)',
})),
transition('offscreen => onscreen', animate('500ms 500ms ease-in')),
]),
]
})
export class SplashComponent implements OnInit {
state: string = 'offscreen';
animateMe() {
this.state = (this.state === 'offscreen' ? 'onscreen' : 'offscreen');
}
constructor(private dataService:DataService) {
}
someProperty:string = '';
ngOnInit() {
console.log(this.dataService.cars);
this.someProperty = this.dataService.myData();
}
}
私のHTML部分があるため、私のSVGの複雑さのため、より複雑ですが、私はちょうど今のところ1つのアニメーションの要素を持っている:
<g id="IsEverything" [@myAwesomeAnimation]='state'(click)="animateMe()"> ...
@ Davtho1983この記事を見たことがありますか? https://blog.thoughtram.io/angular/2017/07/26/a-web-animations-deep-dive-with-angular.html – JGFMK
私は感謝していませんでした!私は彼の他の人のいくつかを見た - 私はなぜその特定の人が私を逃したのか分からない - それはthoを助けるように見える! – Davtho1983