uni-app pages.json 设置 沉浸式透明导航栏

    "pages": [ //pages数组中第一项表示应用启动页,
        {
            "path": "pages/main/main",
            "style": {
                "navigationBarTitleText": "沉浸式透明导航栏",
                "navigationStyle": "custom", // 取消本页面的导航栏
                "app-plus": {
                    "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
                    "background": "transparent", // 背景透明
                    "backgroundColor": "rgba(0,0,0,0)", // 背景透明
                    "webviewBGTransparent": true,
                    "mask": "none",
                    "opacity": 0.9,
                    "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
                }
            }
        }

 

posted @ 2021-12-27 09:29  凉面好好吃  阅读(1433)  评论(0编辑  收藏  举报