单击按钮后如何在 Ionic 5 上添加动画?
How to add an animation on Ionic 5 once click on a button?
我的代码如下,但它不起作用,我想要的是在单击按钮后激活效果。
//TS
@ViewChild('icono', { read: ElementRef })icono: ElementRef;
execEffect() {
let x = this.icono
x.nativeElement.classList.add('bounce')
}
//HTML
<img #icono src="../../assets/something.png" style="width:60px;" (click)="execEffect()"/>
我推荐你使用 Renderer 2...
我做了例子四你...
我的代码如下,但它不起作用,我想要的是在单击按钮后激活效果。 //TS
@ViewChild('icono', { read: ElementRef })icono: ElementRef;
execEffect() {
let x = this.icono
x.nativeElement.classList.add('bounce')
}
//HTML
<img #icono src="../../assets/something.png" style="width:60px;" (click)="execEffect()"/>
我推荐你使用 Renderer 2...
我做了例子四你...