vue商品详情页添加动画(eg)

<template>
    <div class="food" transition="move"></div>
</template>

<style lang="stylus" rel="stylesheet/stylus">
    .food
        position:fixed
        left:0
        top:0
        bottom:48px
        z-index:30
        width:100%
        background:#fff
        &.move-transition
            transition:all 0.2s linear 
            transform:translate3d(0,0,0)
        &.move-enter,&.move-leave
            transform:translated3d(100%,0,0)
</style>

 

posted @ 2018-01-21 22:15  无花即无果  阅读(491)  评论(0编辑  收藏  举报