10-绑定样式

    绑定样式:
    1. class样式
        写法:class="xxx" xxx可以是字符串、对象、数组。
            字符串写法适用于:类名不确定,要动态获取。
            对象写法适用于:要绑定多个样式,个数不确定,名字也不确定。
            数组写法适用于:要绑定多个样式,个数确定,名字也确定,但不确定用不用。
    2. style样式
            :style="{fontSize: xxx}"其中xxx是动态值。
            :style="[a,b]"其中a、b是样式对象。
DOCTYPE html>
<html lang="en">
<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>

    
    <script type="text/javascript" src="../js/vue2.js">script>

    <style>
        .basic{
            width: 400px;
            height: 100px;
            border: 1px solid black;
        }
        
        .happy{
            border: 4px solid red;;
            background-color: rgba(255, 255, 0, 0.644);
            background: linear-gradient(30deg,yellow,pink,orange,yellow);
        }
        .sad{
            border: 4px dashed rgb(2, 197, 2);
            background-color: gray;
        }
        .normal{
            background-color: skyblue;
        }

        .test1{
            background-color: yellowgreen;
        }
        .test2{
            font-size: 30px;
            text-shadow:2px 2px 10px red;
        }
        .test3{
            border-radius: 20px;
        }
    style>

head>
<body>

    
    <div id="root">
        
        <div class="basic" :class="mood" @click="changeMood">{{name}}div><br/>
        
        <div class="basic" :class="arr">{{name}}div><br/>

        
        <div class="basic" :class="obj">{{name}}div><br/>

        

         
        <div class="basic" :style="styleObj">{{name}}div><br/>
        
        <div class="basic" :style="[styleObj1,styleObj2]">{{name}}div><br/>
        <div class="basic" :style="styleArr">{{name}}div><br/>
    div>

    <script type="text/javascript">
        Vue.config.productionTip = false; //阻止vue 在启动时生成生产提示。

        const vm = new Vue({
            el:'#root',
            data:{
                name:'样式',
                mood:'normal',
                arr:['test1','test2','test3'],
                obj:{
                    test1:false,
                    test2:false
                },
                fsize:40,
                styleObj:{
                    fontSize:'40px',
                    color:'red',
                    backgroundColor:'orange'
                },
                styleObj1:{
                    fontSize:'40px',
                    color:'red',
                    backgroundColor:'orange'
                },
                styleObj2:{
                    fontSize:'40px',
                    color:'red',
                    backgroundColor:'orange'
                },
                styleArr:[
                    {
                        fontSize:'40px',
                        color:'blue'
                    },
                    {
                        backgroundColor:'grey'
                    }
                ]
            },
            methods: {
                changeMood(){
                    const arr = ['happy','normal','sad']
                    this.mood = arr[Math.floor(Math.random()*3)]
                }
            },
        })
    script>
body>
html>

你可能感兴趣的:(vue,vue.js,javascript,前端)