Vue中的绑定样式

目录

绑定样式:

            class样式

            style样式:

class样式写法

style样式写法


绑定样式:

            class样式

                      写法:calss="xxx" xxx可以是字符串 对象 数组

                      字符串写法适用于: 类名不确定 要动态获取

                      对象写法适用于:绑定多个样式 个数不确定 名字也不确定

                      整组写法适用于:要绑定多个样式 个数确定 名字也确定 但不确定用不

            style样式:

                   :style="{fontSize:xxx}"其中xxx是动态值

                   :style="[a,b]"其中a,b是样式对象

class样式写法

绑定class 样式 ---字符串写法 适用于:样式的类名不确定 需要动态指定 

        <div class="basic" :class="字符串"  @click="changeMood">{{name}}</div><br><br>

绑定class 样式 ---数组写法 适用于:要绑定的样式个数不确定 名字也不确定

        <div class="basic" :class="数组">{{name}}</div><br><br>

绑定class 样式 ---对象写法 适用于:要绑定的样式个数不确定 名字也不确定 但要动态绝对用不用

        <div class="basic" :class="对象">{{name}}</div><br>

style样式写法

绑定style 样式 ---对象写法

        <div class="basic" :style="对象">{{name}}</div><br>

绑定style 样式 ---数组写法

        <div class="basic" :style="数组">{{name}}</div>  

样式内容自定义设置 
<!-- <style>
        .basic {
            width: 400px;
            height: 100px;
            border: 1px solid black;
        }

        .happy {
            background-color: red;
        }

        .sad {
            background-color: yellowgreen;
        }

        .normal {
            background-color: blue;
        }

        .atguigu1 {
            background-color: pink;
            box-shadow: 60px -16px teal;
        }

        .atguigu2 {
            background-color: gray;
            font-weight:bold;
        }

        .atguigu3 {
            background-color: skyblue;
            text-shadow: 1px 1px 2px black;
            
        }
    </style>
-->
<script type="text/javascript">
    Vue.config.productionTip = false //阻止 vue 在启动时生成生产提示。

    new Vue({
        el: '#root',
        data:{
            name: '浮点',
            mood:'normal',
            classArr:['atguigu1','atguigu2','atguigu3'],
            classObj:{
                atguigu1:false,
            },
            styleObj:{
                fontSize:'40px',
                color:'red',
               // backgroundColor:'orange'
            },
            styleObj2:{
                backgroundColor:'orange'
            }
        },
        methods: {
            changeMood() {
                const arr = ['happy','sad','normal']
                const index = Math.floor(Math.random()*3)
                this.mood = arr[index]
            }
        },
    })

</script>

效果图:(效果根据自己喜欢设置即可)

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值