美文网首页
Vue入门到放弃05(样式处理class、style)

Vue入门到放弃05(样式处理class、style)

作者: 开猿_节流 | 来源:发表于2019-12-04 10:02 被阅读0次

    在Vue中使用样式

    使用class样式

    数组 <h1 :class="['red', 'thin']">这是一个邪恶的H1</h1>

    数组中使用三元表达式<h1 :class="['red', 'thin', isactive?'active':'']">这是一个邪恶的H1</h1>

    数组中嵌套对象<h1 :class="['red', 'thin', {'active': isactive}]">这是一个邪恶的H1</h1>

    直接使用对象<h1 :class="{red:true, italic:true, active:true, thin:true}">这是一个邪恶的H1</h1>

    使用内联样式

    直接在元素上通过 :style 的形式,书写样式对象<h1 :style="{color: 'red', 'font-size': '40px'}">这是一个善良的H1</h1>

    将样式对象,定义到 data 中,并直接引用到 :style 中

    在data上定义样式:data: { h1StyleObj: { color: 'red', 'font-size': '40px', 'font-weight': '200' } }

    在元素中,通过属性绑定的形式,将样式对象应用到元素中:<h1 :style="h1StyleObj">这是一个善良的H1</h1>

    在 :style 中通过数组,引用多个 data 上的样式对象

    在data上定义样式:data: { h1StyleObj: { color: 'red', 'font-size': '40px', 'font-weight': '200' }, h1StyleObj2: { fontStyle: 'italic' } }

    在元素中,通过属性绑定的形式,将样式对象应用到元素中:<h1 :style="[h1StyleObj, h1StyleObj2]">这是一个善良的H1</h1>

    1.基本的class使用

      我们先来看下非vue情况的class的使用,如下:

    ```

    <!DOCTYPE html>

    <html lang="en">

      <head>

        <meta charset="UTF-8" />

        <meta name="viewport" content="width=device-width, initial-scale=1.0" />

        <meta http-equiv="X-UA-Compatible" content="ie=edge" />

        <title>Document</title>

        <script src="./lib/vue-2.4.0.js"></script>

        <style>

          .red {color: red; /* 字体颜色 */}

          .thin {font-weight: 200;/* 字重 */}

          .italic {font-style: italic;/* 斜体 */}

          .active {letter-spacing: 0.5em;/* 间距 */}

        </style>

      </head>

      <body>

        <div id="app">

          <h1 class="red thin">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <!-- 第一种使用方式,直接传递一个数组,注意: 这里的 class 需要使用  v-bind 做数据绑定 -->

          <h1 v-bind:class="['thin', 'italic']">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <h1 :class="['thin', 'italic']">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <!-- 在数组中使用三元表达式 -->

          <h1 :class="['thin', 'italic', flag?'active':'']">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <!-- 在数组中使用 对象来代替三元表达式,提高代码的可读性 -->

          <h1 :class="['thin', 'italic', {'active':flag} ]">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <!-- 在为 class 使用 v-bind 绑定 对象的时候,对象的属性是类名,由于 对象的属性可带引号,也可不带引号,所以 这里我没写引号;  属性的值 是一个标识符 -->

          <h1 :class="{ red: true, thin: true, italic: false, active: false }">这是一个很大很大的H1,大到你无法想象!!!</h1>

          <h1 :class="classObj">这是一个很大很大的H1,大到你无法想象!!!</h1>

        </div>

        <script>

          // 创建 Vue 实例,得到 ViewModel

          var vm = new Vue({

            el: "#app",

            data: {

              flag: true,

              classObj: { red: true, thin: true, italic: false, active: false }

            },

            methods: {}

          });

        </script>

      </body>

    </html>

    ```

    原文链接:https://blog.csdn.net/qq_38191191/article/details/103356063

    相关文章

      网友评论

          本文标题:Vue入门到放弃05(样式处理class、style)

          本文链接:https://www.haomeiwen.com/subject/bhukgctx.html