<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>绑定样式</title>
<style>
.basic{
width: 400px;
height:100px;
border: 1px solid black;
}
.happy{
width: 400px;
height:100px;
background: linear-gradient(rgb(41, 128, 185), rgb(109, 213, 250), rgb(255, 255, 255));
}
.sad{
width: 400px;
height:100px;
background: linear-gradient(rgb(0, 180, 219), rgb(0, 131, 176));
}
.normal{
width: 400px;
height:100px;
background:beige;
}
.atguigu1{
width: 400px;
height:100px;
font-size: 24px;
font-weight: 600;
background:rgb(51, 51, 48);
}
.atguigu2{
width: 400px;
height:100px;
font-size: 30px;
font-weight: 800;
background:rgb(161, 161, 37);
}
.atguigu3{
width: 400px;
height:100px;
border-radius: 20px;
background:rgb(56, 168, 21);
}
</style>
<!-- 引入vue -->
<script src="/vue.js/vue.js"></script>
</head>
<body>
<!-- 绑定样式:
1.classf式
写法:class="xxx"xxX可以是宁符串、对象、数组。
字符串写法适用于:类名不确定,要动态获取。
对象写法适用于:要绑定多个样式,个数不确定,名字也不确定。
数组写法适用于:要绑定多个样式,个数确定,名字也确定,但不确定用不用。
2. style样式
:style="(fontsize: xxx}“其中xxx是动态值。
:style=[a,b]"其中a、b是样式对象. -->
<!-- 准备好一个容器 -->
<div id="root">
<!-- 绑定class样式--字符串写法,适用于:样式的类名不确定,需要动态指定 -->
<div class="basic" :class="mood" @click="changeMood">{{name}}</div><br><br>
<!-- 绑定class样式--数组写法,适用于:要绑定样式个数不确定,名字也不确定 -->
<div class="basic" :class="classArr">{{name}}</div><br><br>
<!-- 绑定class样式--对象写法,适用于:要绑定样式个数确定,名字也确定,但要动态决定用不用 -->
<div class="basic" :class="classObj">{{name}}</div><br><br>
<!-- 绑定style样式--对象写法 -->
<div class="basic" :style="styleObj">{{name}}</div>
<!-- 绑定style样式--数组写法 -->
<div class="basic" :style="styleArr">{{name}}</div>
</div>
</body>
<script>
Vue.config.productionTip = false //阻止 vue 在启动时生成生产提示。
const vm = new Vue({
el:'#root',
data:{
name:'尚硅谷',
mood:'normal',
classArr:['atguigu1','atguigu2','atguigu3'],
classObj:{
atguigu1:false,
atguigu2:false,
atguigu3:true,
},
styleObj:{
fontSize:'40px',
color:'red',
},
styleObj2:{
backgroundColor:'orange'
},
styleArr:[
{
fontSize:'40px',
color:'red',
},
{
backgroundColor:'gray'
}
]
},
methods: {
changeMood(){
const arr = ['happy','sad','normal']
const index = Math.floor(Math.random()*3)
this.mood = arr[index]
}
},
})
</script>
</html>