想象一下,我的.html
文件中有这样的内容
<div>
{{text}}
</div>
<button clear block ion-button (click)="setText()">Set Text</button>
以及setText()
文件中的.ts
功能。
public text: string;
public setText () : void {
this.text += 'a';
}
是否可以给这个函数一个简单的过渡,比如fade
或类似的东西?