uni-app App端 开屏页

1.打开项目找到 manifest.json文件 中 选择对应


 

2.检查 manifest.json 源码处键值对是否一样


 

3.与pages同级添加如图文件


 

4.开屏页hybrid文件 下载地址
https://gitee.com/Relief_believe/web-view/blob/master/hybrid.rar

  1. 找到app.vue
onLaunch(data) {
    // #ifdef APP-PLUS
    plus.navigator.closeSplashscreen();
    var w = plus.webview.open(
        'hybrid/html/advertise/advertise.html',
        '本地地址', {
            top: 0,
            bottom: 0,
            zindex: 999
        },
        'fade-in',
        500
    );
    //设置定时器,4s后关闭启动广告页
    setTimeout(function() {
        plus.webview.close(w);
    }, 4000);
    // #endif
}


链接:https://www.jianshu.com/p/ff9427ac4a89

posted @ 2022-09-08 16:27  偷熊计划  阅读(249)  评论(0编辑  收藏  举报