gpt4 book ai didi

css - 使用 ngStyle 传递 CSS 值

转载 作者:行者123 更新时间:2023-11-28 11:52:35 25 4
gpt4 key购买 nike

我有一个发送值的服务,我需要将该值传递给 CSS 文件,以便我可以控制仪表的移动量。该值介于 0 和 0.5 之间,并改变

transform:rotate( {NUMBER} turn)

在使用先前的 nGclass 动态选择的类上。

示例:如果我的 var 是 0.5,我需要生成的 CSS 代码是

transform:rotate(.5turn)

我该如何管理?

我试过了

[ngStyle]="{'transform:rotate(.5turn)': dashService.variable}"

和相同想法的其他变体,但它似乎不起作用。

最佳答案

您可以使用插值语法:

[ngStyle]="{ 'transform': 'rotate(' + dashService.variable + 'turn)': }"

关于css - 使用 ngStyle 传递 CSS 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58118295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com