vue:实现简单侧边栏弹出动画

在这里插入图片描述

<template>
    <div>
        <button @click="openDialog"> 弹出窗口 </button>
        <div v-if="dialogVisible">
            <p> 这是弹出窗口 </p>
            <button @click="closeDialog"> 关闭窗口 </button>
        </div>
    </div>

    <div class="box">
        <button @click="getPop()">动画弹窗</button>
        <div class="bg" v-if="isShow" @click="closePop()"></div>
        <div class="drawer" :class="isShow ? 'show' : 'hidden'"></div>
    </div>
</template>

<script>
export default {
    name: 'VueTestButtonDivButtonTabs',

    data() {
        return {
            dialogVisible: false,
            isShow: false,
        };
    },

    mounted() {

    },

    methods: {
        openDialog() {
            this.dialogVisible = true
        },
        closeDialog() {
            this.dialogVisible = false
        },
        getPop() {
            this.isShow = true
        },
        closePop() {
            this.isShow = false
        }
    },
};
</script>

<style lang="scss" scoped>
.bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: #304156;
        z-index: 10;
        transition: all 0.3s;
    }

    .show {
        transform: translateX(0);
    }

    .hidden {
        transform: translateX(100%);
    }</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值