Vue—绑定class样式

文章展示了在Vue.js中如何使用:class和:v-bind:style动态绑定元素的class和style属性,包括字符串、对象和数组的不同写法,并提供了相应的样例代码进行解释。通过改变组件的数据,可以实现元素样式的动态更新。

绑定样式:

1.class样式

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

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

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

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

2.style样式

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

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

<style>
            .basic{
                width: 400px;
                height: 100px;
                border: 1px solid black;
            }
            
            .happy{
                border: 4px solid red;;
                background-color: rgba(255, 255, 0, 0.644);
                background: linear-gradient(30deg,yellow,pink,orange,yellow);
            }
            .sad{
                border: 4px dashed rgb(2, 197, 2);
                background-color: gray;
            }
            .normal{
                background-color: skyblue;
            }
            .atguigu1{
                background-color: yellowgreen;
            }
            .atguigu2{
                font-size: 30px;
                text-shadow:2px 2px 10px red;
            }
            .atguigu3{
                border-radius: 20px;
            }
    </style>
<body>
    <div id="root">
        <!--绑定class样式--字符串写法。
            适用于样式的内容不确定,需要动态指定-->
        <!--绑定的样式正常写,变化的样式单独写-->
        <div class="basic" :class="mood" @click="changeMood">{{name}}</div>
        <!--绑定class样式--数组写法。
            适用于要绑定的样式名字不确定,个数不确定-->
        <!--个数不确定的写成数组形式-->
        <div class="basic" :class="classarr">{{name}}</div>
        <!--绑定class样式--对象写法。
            适用于要绑定的样式名字确定,个数确定,但是要动态决定用不用-->
        <div class="basic" :class="classObj">{{name}}</div>
        <!--绑定style样式--对象写法-->
        <div class="basic" :style="styleObj">{{name}}</div>
        <!--绑定style样式--数组写法-->
        <div class="basic" :style="[styleObj,styleObj2]">{{name}}</div>
    </div>
</body>
<script>
    const vm=new Vue({
        el:'#root',
        data:{
          name:'Gui',
          mood:'normal',
          classarr:['atguigu1','atguigu2','atguigu3'],
          classObj:{
            atguigu1:false,
            atguigu2:false
          },
          styleObj:{
            fontSize:'40px',
            color:'red'
          },
          styleObj2:{
            backgroundColor:'orange'
          }
        },
        methods:{
            changeMood(){
               //this.mood='happy'
               const arr=['happy','sad','normal']
               this.mood=arr[Math.floor(Math.random()*3)]
            }
        }
    })
</script>
Vue 3 中,绑定 CSS 类是一种常用的方式来动态地为元素添加样式,提供了多种方法来实现 class 绑定,以下是详细说明: 1. **对象语法**:通过对象语法,可以根据对象的键值对来动态添加或移除 CSS 类。对象的键是类名,值是一个布尔值,当值为 `true` 时,对应的类名会被添加到元素上;当值为 `false` 时,对应的类名会被移除。示例代码如下: ```vue <template> <div :class="{ active: isActive, 'text-red': hasError }">Hello, Vue 3!</div> </template> <script setup> import { ref } from 'vue'; const isActive = ref(true); const hasError = ref(false); </script> ``` 在上述示例中,`active` 类会被添加到 `div` 元素上,因为 `isActive` 的值为 `true`;而 `text-red` 类不会被添加,因为 `hasError` 的值为 `false` [^1]。 2. **数组语法**:数组语法允许将多个类名组合在一起。可以在数组中直接列出类名,也可以嵌套对象语法来实现更复杂的绑定。示例代码如下: ```vue <template> <div :class="[classA, { active: isActive, 'text-red': hasError }]">Hello, Vue 3!</div> </template> <script setup> import { ref } from 'vue'; const classA = ref('container'); const isActive = ref(true); const hasError = ref(false); </script> ``` 在上述示例中,`container` 类会始终被添加到 `div` 元素上,而 `active` 类也会被添加,因为 `isActive` 的值为 `true`;`text-red` 类不会被添加,因为 `hasError` 的值为 `false` [^3]。 3. **计算属性**:使用计算属性可以根据复杂的逻辑动态生成类名。计算属性返回一个对象或数组,用于绑定到元素的 `class` 属性上。示例代码如下: ```vue <template> <div :class="dynamicClass">Hello, Vue 3!</div> </template> <script setup> import { ref, computed } from 'vue'; const isActive = ref(true); const dynamicClass = computed(() => ({ active: isActive.value, inactive: !isActive.value })); </script> ``` 在上述示例中,`dynamicClass` 是一个计算属性,根据 `isActive` 的值动态生成一个对象,用于绑定到 `div` 元素的 `class` 属性上 [^4]。 4. **方法**:可以定义一个方法,该方法返回一个对象或数组,用于绑定到元素的 `class` 属性上。示例代码如下: ```vue <template> <div :class="dynamicClass()">Hello, Vue 3!</div> </template> <script setup> import { ref } from 'vue'; const isActive = ref(true); const dynamicClass = () => ({ active: isActive.value, inactive: !isActive.value }); </script> ``` 在上述示例中,`dynamicClass` 是一个方法,根据 `isActive` 的值返回一个对象,用于绑定到 `div` 元素的 `class` 属性上 [^4]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值