1
私の目的は、特定のアニメーションをhtml div
に適用することです。このアニメーションの名前に関する情報は、角度コンポーネントの入力変数に含まれる値に基づいています。アニメーションをHTML要素に動的に適用する
@Component({
selector: 'test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css'],
animations: [
myFirstAnimation(),
mySecondAnimation(),
myThirdAnimation(),
]
})
export class TestComponent implements OnInit {
/*
* The information about the name of the animation is containded in obj.animation
* For example: obj.animation may contain '@myFirstAnimation', '@mySecondAnimation' or '@myThirdAnimation'
*/
@Input() obj: any;
//...
}
div
に動的にアニメーションを挿入するには、を入力してdiv
属性として挿入するとどうなりますか?