vue开发 - transition之弹窗动画popup

页面上需要弹出一个列表供用户选择,通过简单的v-show控制,感觉体验上总要差那么一点,于是加上了vue的transition,最终实现的效果就是,点击选择银行时,银行列表从下面一点点滑动上来,选择完成后,慢慢滑动 下去,贴上代码:
先看下效果:
在这里插入图片描述

<template>
    <view class="xn-container">
        <button class="type1" @click="showCssPopup(true)">css transition</button>
        <button class="type1" @click="showVuePopup(true)">vue transition</button>

        <!-- 方法一:通过css3的transition实现  -->
        <view class="css-popup">
            <view class="mask" v-show="show" @click="showCssPopup(false)"></view>
            <view class="popup-content" :class="{show}">
                <p>通过css3的transition实现</p>
                <p>我是弹窗内容</p>
                <p>可以点击遮罩关闭我</p>
            </view>
        </view>

        <!-- 方法二:通过vue的transition配合css3动画实现  -->
        <view class="vue-popup">
            <view class="mask" v-show="show2" @click="showVuePopup(false)"></view>
            <transition name="slide">
                <view class="popup-content" v-show="show2">
                    <p>通过vue的transition配合css3动画实现</p>
                    <p>我是弹窗内容</p>
                    <p>可以点击遮罩关闭我</p>
                </view>
            </transition>
        </view>
    </view>
</template>
<script>
export default {
    name: 'Fixed',
    data() {
        return {
            show: false,
            show2: false
        }
    },
    methods: {
        showCssPopup(flag) {
            this.show = flag
        },
        showVuePopup(flag) {
            this.show2 = flag
        }
    }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style lang="scss" scoped>
.xn-container {
    height: 100%;
}
button {
    display: block;
    width: 300px;
    height: 44px;
    margin: 20px auto;
    border-radius: 4px;
    background-color: #3884ff;
    color: #fff;
}
.css-popup {
    .popup-content {
        position: absolute;
        height: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        -webkit-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        &.show {
            height: 400px;
        }
        p {
            line-height: 30px;
            text-align: center;
        }
    }
}
.vue-popup {
    .popup-content {
        position: absolute;
        height: 400px;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: white;
        -webkit-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in;
        p {
            line-height: 30px;
            text-align: center;
        }
    }
}
.mask {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease-in;
}

.slide-enter-active {
    animation-name: slideInUp;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}
.slide-leave-active {
    animation-name: slideOutDown;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}
@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}
@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.delay-leave-active {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
</style>

 方法一:利用高度的变化实现动画效果

方法二:transition里面的动画内容一定要写在v-show或者v-if里面,否则动画没有效果

おすすめ

転載: blog.csdn.net/qq_41887214/article/details/120805604