欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue通过style或者class改变样式的实例代码

程序员文章站 2023-01-10 12:30:00
通过style改变样式
<...

通过style改变样式

<div :style="{ 'min-height': size + 'px' }"></div> 
<div :style="[{ 'min-height': size + 'px' },{color:'red'}]"></div> 
<div :style="{ 'opacity': value ? 0.5 : 1 }"></div> 

通过classname改变样式

​<div class="static"
   v-bind:class="{ active: isactive, 'text-danger': haserror }">
</div>

<script>
data: {
 isactive: true,
 haserror: false
}
</script>

<style>
.active{
  ...
}
.text-danger{
  ...
}
</style>

ps:下面看下vue的一些样式(class/style)绑定

样式有两种:class、style

class

  1、对象语法

    ①传给 :class 一个对象

    比如:

<div :class="{ active : isactive}"></div>

    在这里,isactive的真值决定active这个样式是否显示

    ②传给 :class 一个对象变量

    再比如,可以直接绑定一个对象

<div :class = "duixiang" ></div>

export default{
  data(){
   return{
    duixiang :{
     active : true
    }
   }
  } 
}

    ③在②的基础上,把这个对象变量放到computed计算属性里

data: {
 isactive: true,
 error: null
},
computed: {
 classobject: function () {
  return {
   active: this.isactive && !this.error,
   'text-danger': this.error && this.error.type === 'fatal',
  }
 }
}

  2、数组语法

    传给 :class 一个数组(数组里面是变量名,然后具体变量名所指的内容写到data里)

<div :class = "[ n , i]"> </div>
export default{
 data(){
  return{
   n : ' active ',
   i : ' text-danger ',
  }
  }
}

     上面的代码在最后会宣传成为<div class = "active text-anger"></div>

style

  1、对象语法

    ①传给 :style一个对象(这个对象是个javascript对象)。记住!css属性名可以用驼峰式命名

<div :style = " { color : activecolor , fontsize : fontsize + 'px' } "></div>
//然后在data里面写明,冒号后边的这个变量的实际内容,如果是单位,像px这种就直接用字符串引着就行了
data: {
 activecolor: 'red',
 fontsize: 30
}  

    ②传给 :style一个对象变量。

<div v-bind:style="styleobject"></div>
//然后在data声明这个对象变量是指代一个怎样具体的对象
data: {
 styleobject: {
  color: 'red',
  fontsize: '13px'
 }
}

同样的,对象语法常常结合返回对象的计算属性使用。

总结

以上所述是小编给大家介绍的vue通过style或者class改变样式的实例代码,希望对大家有所帮助