angular2动态更改样式属性值

时间:2016-10-16 02:11:08

标签: angular

我需要更新图像的变换旋转值,该值随时间动态变化

我尝试了类似下面的内容,但它没有用

style="transform: rotate(imagerotation ? imagerotation : 0 + deg);"

实现这一目标的正确方法是什么?

1 个答案:

答案 0 :(得分:8)

试试这个:

[style.transform]="'rotate(' + (imagerotation ? imagerotation : 0) + 'deg)'"