首页 > 其他分享 >[vue] Vue绑定class样式

[vue] Vue绑定class样式

时间:2022-12-21 10:35:48浏览次数:41  
标签:vue const name 样式 绑定 确定 Vue class


1. class样式

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

  • 字符串写法适用于:类名不确定,要动态获取。
  • 对象写法适用于:要绑定多个样式,个数不确定,名字也不确定。
  • 数组写法适用于:要绑定多个样式,个数确定,名字也确定,但不确定用不用。


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

.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;
}
<div id="root">
<div class="basic" :class="mood" @click="changeMood">{{name}}</div>
</div>
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
mood:'normal',
},
methods: {
changeMood(){
const arr = ['happy','sad','normal']
const index = Math.floor(Math.random()*3)
this.mood = arr[index]
}
},
})

类名不确定,要动态获取。

[vue] Vue绑定class样式_字符串

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

<div id="root">
<div class="basic" :class="mood" @click="changeMood">{{name}}</div>
</div>
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
classObj:{
atguigu1:false,
atguigu2:false,
},
},

})

要绑定多个样式,个数不确定,名字也不确定。

[vue] Vue绑定class样式_Vue_02



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

<div id="root">
<!-- 绑定class样式--数组写法,适用于:要绑定的样式个数不确定、名字也不确定 -->
<div class="basic" :class="classArr">{{name}}</div>
</div>
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
classArr:['atguigu1','atguigu2','atguigu3'],
}
})
要绑定多个样式,个数确定,名字也确定,但不确定用不用。

[vue] Vue绑定class样式_字符串_03

2. style样式

:style="{fontSize: xxx}“其中xxx是动态值。
:style=”[a,b]"其中a、b是样式对象。

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

<div id="root"> 
<!-- 绑定style样式--对象写法 -->
<div class="basic" :style="styleObj">{{name}}</div>
</div>
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
styleObj:{
fontSize: '40px',
color:'red',
},
styleObj2:{
backgroundColor:'orange'
},

},

})

[vue] Vue绑定class样式_数组_04

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

<div id="root">
<!-- 绑定style样式--数组写法 -->
<div class="basic" :style="styleArr">{{name}}</div>
</div>
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
styleArr:[
{
fontSize: '40px',
color:'blue',
},
{
backgroundColor:'gray'
}
]
},

})

[vue] Vue绑定class样式_字符串_05



参考:

​​Vue绑定样式​​


标签:vue,const,name,样式,绑定,确定,Vue,class
From: https://blog.51cto.com/u_12881709/5957933

相关文章

  • [vue] 项目使用rem 单个组件 PC端自适应大屏
    rem.jsexportfunctionresetRem(){//基准大小baseSize=100;constbasePc=baseSize/1440;//表示1440的设计图,使用100PX的默认值constvW=window.inner......
  • [vue] 列表过滤
    基本页面<divid="root"><h2>人员列表</h2><inputtype="text"placeholder="请输入名字"v-model="keyWord"><ul><liv-for="(p,index)ofpersons":key="index......
  • [mapbox] popup挂载自定义组件 vue
    pop.vue<template><div>222</div></template><script>exportdefault{name:'display-map-pop',components:{},props:{PopObj:{type:Array,d......
  • [vue] 列表排序
    <divid="root"><h2>人员列表</h2><inputtype="text"placeholder="请输入名字"v-model="keyWord"><button@click="sortType=2">年龄升序</button><button@cl......
  • [vue] Vue监测数据改变的原理 对象,数组
    Vue监测对象数据改变的原理<divid="root"><h2>学校名称:{{name}}</h2><h2>学校地址:{{address}}</h2></div>constvm=newVue({el:'#root',data:{name:'尚硅谷......
  • 基于Springboot+Mybatis+mysql+vue考研规划与交流系统
    @目录一、系统介绍二、功能展示1.主页(普通用户)2.登陆、注册(普通用户)3.复习规划制定(普通用户)4.经验分享交流(普通用户)5.考研学校资讯(普通用户)6.我的文章(普通用户)7.个人信......
  • Vue路由配置项meta使用
    meta简单来说就是路由元信息也就是每个路由身上携带的信息。这里简单的举两个例子其次还有一个功能就是能够控制公共组件的显示或隐藏请忽视keep-alive标签......
  • vue项目引入echarts柱状图
    一。components文件下引入barCharts.vue文件<template><div:class="className":style="{height:height,width:width}"/></template><script>import*asecha......
  • vue 项目引入 echarts折线图
    一。components文件下新建lineCharts.vue<template><div:class="className":style="{height:height,width:width}"/></template><script>import*asec......
  • vue3 Composition API使用
    Vue3新增了CompositionAPI。我们只需将实现某一功能的相关代码全部放进一个函数中,然后return需要对外暴露的对象。不同功能的代码都是一个个函数,最终在setup()函数中......