首页 > 其他 > 详细

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

时间:2018-01-21 23:00:17      阅读:166      评论:0      收藏:0      [点我收藏+]
<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>

 

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

原文:https://www.cnblogs.com/xuxiaoxia/p/8325836.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!