学习vue第五节,vue中使用class和style的css样式

vue中使用class样式

  1. 数组
<h1 :class="[‘red‘, ‘thin‘]">这是一个H1</h1>
  1. 数组中使用三元表达式

<h1 :class="[‘red‘, ‘thin‘, isactive?‘active‘:‘‘]">这是一个H1</h1>
  1. 数组中嵌套对象

<h1 :class="[‘red‘, ‘thin‘, {‘active‘: isactive}]">这是一个H1</h1>
  1. 直接使用对象

<h1 :class="{red:true, italic:true, active:true, thin:true}">这是一个H1</h1>

使用内联样式

  1. 直接在元素上通过 :style 的形式,书写样式对象

<h1 :style="{color: ‘red‘, ‘font-size‘: ‘40px‘}">这是一个善良的H1</h1>
  1. 将样式对象,定义到 data 中,并直接引用到 :style

  • 在data上定义样式:

data: {        h1StyleObj: { color: ‘red‘, ‘font-size‘: ‘40px‘, ‘font-weight‘: ‘200‘ }}
  • 在元素中,通过属性绑定的形式,将样式对象应用到元素中:

<h1 :style="h1StyleObj">这是一个善良的H1</h1>
  1. :style 中通过数组,引用多个 data 上的样式对象

  • 在data上定义样式:

data: {        h1StyleObj: { color: ‘red‘, ‘font-size‘: ‘40px‘, ‘font-weight‘: ‘200‘ },        h1StyleObj2: { fontStyle: ‘italic‘ }}
  • 在元素中,通过属性绑定的形式,将样式对象应用到元素中:

<h1 :style="[h1StyleObj, h1StyleObj2]">这是一个善良的H1</h1>
 
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/vue-2.4.0.js" type="text/javascript" charset="utf-8"></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 :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="classObj">这是一个很大很大的H1,大到你无法想象!!!</h1>

            <!-- 对象就是无序键值对的集合 -->
            <!-- <h1 :style="styleObj1">这是一个h1</h1> -->
            <!-- 添加多个对象,可以放到数组中 -->
            <h1 :style="[ styleObj1, styleObj2 ]">这是一个h1</h1>

        </div>

        <script>
            // 创建 Vue 实例,得到 ViewModel
            var vm = new Vue({
                el: ‘#app‘,
                data: {
                    flag: true,
                    classObj: {red: true,thin: true,italic: false,active: false},
                    styleObj1:{ color:"red","font-size":"28px"},
                    styleObj1:{ ‘font-weight‘: 200},//属性有横线的要加双引号
                    
                },
                methods: {}
            });
        </script>
 

相关推荐