网络编程
位置:首页>> 网络编程>> JavaScript>> VUE中如何动态绑定类名和样式

VUE中如何动态绑定类名和样式

作者:A7Feather  发布时间:2024-04-26 17:41:35 

标签:VUE,动态绑定,类名,样式

VUE动态绑定类名和样式

1、使用v-bind属性绑定class和style属性

2、动态类名两种方式:

  • 对象形式:给对象属性赋boolean类型值

  • 数组配合三元运算符,通过改变条件的真假实现类名的添加和删除

<template>
  <div>
    <div :class="classObj">动态绑定对象</div>
    <div :class="['namebox', activeStatus ? 'activeNamebox' : '']">
      动态绑定数组
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      classObj: {
        namebox: true,
        activeNamebox: false
      },
      activeStatus: false
    }
  }
}
</script>
<style>
.namebox {
  color: #777;
}
.activeNamebox {
  background-color: aquamarine;
}
</style>

3、动态样式的两种方式

  • 对象形式

  • 数组(包含样式对象)形式:可以同时添加多个样式对象

<template>
  <div>
    <div :style="styleObj1">对象形式</div>
    <div :style="[styleObj1, styleObj2]">数组形式</div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      styleObj1: {
        color: '#eee'
      },
      styleObj2: {
        textAlign: center
      }
    }
  }
}
</script>
<style></style>

动态绑定样式&mdash;&mdash;动态绑定style写法 & 动态class写法

1、动态绑定style写法

注意:

凡是有-的style属性名都要变成驼峰式,比如font-size要变成fontSize

除了绑定值,其他的属性名的值要用引号括起来,比如backgroundColor:'#00a2ff'而不是 backgroundColor:#00a2ff

1.1、对象 

<div :style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
<div :style="{color:(index == 1 ? conFontColor:'#000')}"></div>

1.2、数组 

<div :style="[baseStyles, overridingStyles]"></div>
<div :style="[{color:(index == 1 ? conFontColor:'#000')},{fontSize:'18px'}]"></div>

1.3、三元运算符 

<div :style="{color:(index == 1 ? conFontColor:'#000')}"></div>
<div :style="[{color:(index == 1 ? conFontColor:'#000')},{fontSize:'18px'}]"></div>
<div :style="item.layerName === activeLayerName?'font-weight:700' : 'font-weight:400'"></div>
<!-- 写法一 -->
<div :style="[{float: id === '12' ? 'left:'right}]"></div>
<!-- 写法二 -->
<div :style="float: nameList.length === 20 ? 'height:64px' : 'height:32px' "></div>
<!-- 写法三 -->
<div :style="{border:( nameId ===item.id ?'2px solid #4C78FF': 'red')}"></div>

1.4、绑定data对象 

<div :style="styleObject"></div>
<script>
    data() {
        return{
          styleObject: {
            color: 'red',
            fontSize: '14px'
          }  
        }
    }
</scrip>

2、动态class写法

2.1、对象方法

<!-- isActive —— true/false -->
<div :class="{ 'active': isActive  }">{{name}}</div> 

2.2、判断是否绑定一个active 

<div :class="{'active' : isActive == -2}"  >{{name}}</div>
<div :class="{'active' : isActive == item.nameId}"  >{{item.name}}</div>

2.3、绑定并判断多个

2.31、第一种:用逗号隔开

<div :class="{ 'active': isActive, 'user': isUser }"></div>

2.32、放在data里面 

<div :class="classObject">{{name}}</div>
<script>
data() {
  return {
    classObject:{ active: true, user:false }
  }
}
</script>

2.33、使用computed属性

<div :class="classObject">{{name}}</div>
<script>
data() {
  return {
    isActive: true,
    isUser: false
  }
},
computed: {
  classObject: function () {
    return {
      active: this.isActive,
      user:this.isUser
    }
  }
}
</script>

2.4、数组方法

2.41、单纯数组 

<div :class="[isActive,isUser]">{{name}}</div>
<script>
data() {
  return{
    isActive:'active',
    isUser:'user'
 }
}
</script>

2.42、数组与三元运算符结合判断选择需要的class

注意:三元运算符后面的&ldquo;:&rdquo;两边的class需要加上单引号,否则不能正确渲染

:class="[isActive?‘active':'']"
或者
:class="[isActive1?‘active':'']"
或者
:class="[isActiveindex?‘active':'']"
或者
:class="[isActive==index?‘active':‘otherActiveClass']"

2.43、数组对象结合动态判断

//前面这个active在对象里面可以不加单引号,后面这个sort要加单引号
:class="[{ active: isActive }, ‘sort']"
或者
:class="[{ active: isActive1 }, ‘sort']"
或者
:class="[{ active: isActiveindex }, ‘sort']"

来源:https://blog.csdn.net/m0_61852712/article/details/127123795

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com