0

我尝试了几种方法,以下是我的尝试:

在我的打字稿文件中,我将值设置为:

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>

两种方法都不起作用。有什么办法可以做到这一点?

4

1 回答 1

0

只需取两者的优点:

this.value = "130"

<animateTransform attributeName="transform"
                  type="rotate"
                  [attr.from]="value + ' 192 190'"
                  to="0 192 190"
                  dur="3s"></animateTransform>
于 2018-07-19T09:58:08.903 回答