最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

vue通過style或者class改變樣式的實(shí)例代碼

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:05:34
文檔

vue通過style或者class改變樣式的實(shí)例代碼

vue通過style或者class改變樣式的實(shí)例代碼:通過style改變樣式 <div :style={ 'min-height': size + 'px' }></div> <div :style=[{ 'min-height': size + 'px' },{color:'red'}]></div> <div :style={ 'opa
推薦度:
導(dǎo)讀vue通過style或者class改變樣式的實(shí)例代碼:通過style改變樣式 <div :style={ 'min-height': size + 'px' }></div> <div :style=[{ 'min-height': size + 'px' },{color:'red'}]></div> <div :style={ 'opa

通過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、對(duì)象語(yǔ)法

   ?、賯鹘o :class 一個(gè)對(duì)象

    比如:

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

    在這里,isActive的真值決定active這個(gè)樣式是否顯示

   ?、趥鹘o :class 一個(gè)對(duì)象變量

    再比如,可以直接綁定一個(gè)對(duì)象

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

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

   ?、墼冖诘幕A(chǔ)上,把這個(gè)對(duì)象變量放到computed計(jì)算屬性里

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

  2、數(shù)組語(yǔ)法

    傳給 :class 一個(gè)數(shù)組(數(shù)組里面是變量名,然后具體變量名所指的內(nèi)容寫到data里)

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

     上面的代碼在最后會(huì)宣傳成為<div class = "active text-anger"></div>

style

  1、對(duì)象語(yǔ)法

    ①傳給 :style一個(gè)對(duì)象(這個(gè)對(duì)象是個(gè)JavaScript對(duì)象)。記?。SS屬性名可以用駝峰式命名

<div :style = " { color : activeColor , fontSize : fontSize + 'px' } "></div>
//然后在data里面寫明,冒號(hào)后邊的這個(gè)變量的實(shí)際內(nèi)容,如果是單位,像px這種就直接用字符串引著就行了
data: {
 activeColor: 'red',
 fontSize: 30
}  

   ?、趥鹘o :style一個(gè)對(duì)象變量。

<div v-bind:style="styleObject"></div>
//然后在data聲明這個(gè)對(duì)象變量是指代一個(gè)怎樣具體的對(duì)象
data: {
 styleObject: {
 color: 'red',
 fontSize: '13px'
 }
}

同樣的,對(duì)象語(yǔ)法常常結(jié)合返回對(duì)象的計(jì)算屬性使用。

總結(jié)

以上所述是小編給大家介紹的vue通過style或者class改變樣式的實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue通過style或者class改變樣式的實(shí)例代碼

vue通過style或者class改變樣式的實(shí)例代碼:通過style改變樣式 <div :style={ 'min-height': size + 'px' }></div> <div :style=[{ 'min-height': size + 'px' },{color:'red'}]></div> <div :style={ 'opa
推薦度:
標(biāo)簽: VUE 樣式 style
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top