当前位置:首页 » 《资源分享》 » 正文

前端-VUE2中的动态CSS样式

22 人参与  2024年05月03日 14:44  分类 : 《资源分享》  评论

点击全文阅读


一、第一种,:style写法,分为直接赋值变量,或者使用CSS样式对象

1.赋值变量

<button :style="buttonStyle">点击</button>

 computed: {
    buttonStyle() {
      return {
        backgroundColor: this.clicked ? 'green' : 'blue',
        color: 'white',
        padding: '10px 20px'
      };
    }
  }

2.使用CSS样式对象

<div :style="{ backgroundColor: bgColor, color: textColor }">111</div>


<script>
export default {
  data() {
    return {
      bgColor: 'yellow',
      textColor: 'blue'
    };
  }
};
</script>

二、第二种,使用类名绑定:class

<template>
  <div :class="{'highlight': isActive, 'large-text': isLargeText}">111</div>
</template>
 
<script>
export default {
  data() {
    return {
      isActive: false,
      isLargeText: true
    };
  }
};
</script>
 
<style>
.highlight {
  background-color: yellow;
}
 
.large-text {
  font-size: 20px;
}
</style>


点击全文阅读


本文链接:http://zhangshiyu.com/post/103204.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1