使用animate.css库

https://daneden.github.io/animate.css/

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>Vue中使用 animate.css</title>
    <script src="./vue.js"></script>
    <style>
        @keyframes bounce-in {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.5);
            }
            100% {
                transform: scale(1);
            }
        }
        .active {
            transform-origin: left center;
            animation: bounce-in 1s;
        }
        .leave {
            transform-origin: left center;
            animation: bounce-in 1s reverse;
        }
    </style>
</head>
<body>
    <div id="root">
        <transition 
            enter-active-class="active"
            leave-active-class="leave"
        >
            <div v-if="show">
                hello world
            </div>
        </transition>   
        <button @click="handleClick">切换</button>
    </div> 
    <script>
    new Vue({ 
        el: "#root", 
        data: {
            show: true
        },
        methods: {
            handleClick: function() {
                this.show = !this.show
            }
        }
    })
    </script>
</body>
</html>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>Vue中使用 animate.cs</title>
    <script src="./vue.js"></script>
    <link rel="stylesheet" type="text/css" href="./animate.css">
</head>
<body>
    <div id="root">
        <transition 
            enter-active-class="animated swing "
            leave-active-class="animated shake"
        >
            <div v-if="show">
                hello world
            </div>
        </transition>   
        <button @click="handleClick">切换</button>
    </div> 
    <script>
    new Vue({ 
        el: "#root", 
        data: {
            show: true
        },
        methods: {
            handleClick: function() {
                this.show = !this.show
            }
        }
    })
    </script>
</body>
</html>