小程序模板:专业的小程序模板与静态模板分享平台
小程序
教程
搜索
当前位置 : 首页> 小程序教程> uniapp自定义弹窗,可覆盖tabBar底部导航栏

uniapp自定义弹窗,可覆盖tabBar底部导航栏

1. 创建自定义弹窗组件

首先,您需要创建一个自定义组件,用于实现弹窗的内容和布局。您可以在components目录下创建一个新的组件,例如CustomPopup。可以使用uni-popup组件来实现弹窗的基础样式和动画效果。


    
        
                
                    立即填写
                 
     
    


JS

data(){
    return{fillOut:true}}
    .showTotal{
        .show{
            width: 620rpx;
            position: fixed;
            left: 0;
            right: 0;
            top:280rpx;
            margin: auto;
            z-index: 10000;
            &-image{
                width: 620rpx;
                position: relative;
            }
            &-button{
                width: 400rpx;
                line-height: 96rpx;
                text-align: center;
                color: #fff;
                font-size: 32rpx;
                border-radius: 56rpx;
                background: linear-gradient(90deg, #F97C55 0%, #F44545 100%);
                position: absolute;
                bottom: -40rpx;
                left: 110rpx;
            }
        }
        .over{
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: 0.6;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;//这一步很重要
        }
        
        .button{
            width: 400rpx;
            height: 96rpx;
            background: linear-gradient(90deg, #F97C55 0%, #F44545 100%);
        }
    }



联系客服 意见反馈

签到成功!

已连续签到1天,签到3天将获得积分VIP1天

知道了