标签: angular
我需要更新图像的变换旋转值,该值随时间动态变化
我尝试了类似下面的内容,但它没有用
style="transform: rotate(imagerotation ? imagerotation : 0 + deg);"
实现这一目标的正确方法是什么?
答案 0 :(得分:8)
试试这个:
[style.transform]="'rotate(' + (imagerotation ? imagerotation : 0) + 'deg)'"