我尝试了几种方法,以下是我的尝试:
在我的打字稿文件中,我将值设置为:
this.value = "130"; //for first method
this.rotation = "130 192 190"; //for second method
在 component.html 中
<animateTransform attributeName="transform"
type="rotate"
from="{{value}} 192 190"
to="0 192 190"
dur="3s"></animateTransform>
第二种方法:
<animateTransform attributeName="transform"
type="rotate"
[attr.from]="rotation"
to="0 192 190"
dur="3s"></animateTransform>
两种方法都不起作用。有什么办法可以做到这一点?