码迷,mamicode.com
首页 > Web开发 > 详细

vue animate.css训练动画案例 列表循环

时间:2020-02-02 01:44:32      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:列表   out   one   button   item   rip   ted   over   find   

制作目标动画:向上入场添加数据,点击数据右滑动离场

简单页面效果:

技术图片

实现代码如下:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <link rel="stylesheet" type="text/css" href="css/animate.css"/>
        <script type="text/javascript" src="js/vue.js" ></script>
        <style type="text/css">
            .box li{
                width: 300px;
                line-height: 30px;
                margin: 5px;
                padding: 0 10px;
                border: 1px dashed royalblue;
                list-style: none;            
            }
            .box li:hover{
                background-color: royalblue;    
                color: #fff;
                cursor: pointer;
            }
        </style>
    </head>
    <body>
        <div id="app">
            id: <input type="text" v-model="id"/>
            name: <input type="text" v-model="name"/>
            <button @click="add">添加</button>
            <ul class="box">
                <transition-group enter-active-class="animated slideInUp" leave-active-class="animated slideOutRight" >
                    <li v-for="item in list" :key="item.id" @click="del(item.id)">{{item.name}}</li>
                </transition-group>
            </ul>
                
        </div>
        <script type="text/javascript">
            var vm = new Vue({
                el:#app,
                data:{
                    list:[
                        {id:1,name:xiaoxiao},
                        {id:2,name:maomao},
                        {id:3,name:dada},
                        {id:4,name:hehe},
                    ],
                    id:‘‘,
                    name:‘‘
                },
                methods:{
                    add(){
                        this.list.push({id:this.id,name:this.name})
                    },
                    del(id){
                        var index = this.list.findIndex(function(item){
                            return item.id == id
                        })
                        this.list.splice(index,1)
                    }
                }
            })
        </script>
    </body>
</html>

 

vue animate.css训练动画案例 列表循环

标签:列表   out   one   button   item   rip   ted   over   find   

原文地址:https://www.cnblogs.com/Mishell/p/12250680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!