美文网首页
Vue动态设置Style属性

Vue动态设置Style属性

作者: 泪滴在琴上 | 来源:发表于2021-04-29 13:49 被阅读0次

    凡是有-的style属性名都要变成驼峰式,比如font-size要变成fontSize
    除了绑定值,其他的属性名的值要用引号括起来,比如backgroundColor:'#00a2ff'而不是 backgroundColor:#00a2ff
    对象
    html :style="{ color: activeColor, fontSize: fontSize + 'px' }"

    html :style="{display:(activeName=='first'?'flex':'none')}"

     数组
     html :style="[baseStyles, overridingStyles]"
    
     html :style="[{display:(activeName=='first'?'flex':'none')},{fontSize:'20px'}]"
    
    三目运算符
    html :style="{color:(index==0?conFontColor:'#ddd')}"
    
    html :style="[{color:(index==0?conFontColor:'#ddd')},{fontSize:'22px'}]"
    

    多重值
    此时,浏览器会根据运行支持情况进行选择

    html :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"
    ————————————————
    版权声明:本文为CSDN博主「2015从头再来」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/fuzhongbin/article/details/104970325

    相关文章

      网友评论

          本文标题:Vue动态设置Style属性

          本文链接:https://www.haomeiwen.com/subject/suqwrltx.html