网站首页
uniapp-设置webview背景透明兼容性
发布时间:2020-11-26 04:26查看次数:5098
安卓下直接设置
background: 'transparent',
但是在IOS下
还有一个背景到顶部的背景色
backgroundColorTop: 'rgba(255,0,0,0)'
同时还有设置页面的背景色透明
background-color: transparent;
总结:IOS 设置WEBVIEW 透明步骤
1.如下:
// #ifdef APP-PLUS if (plus.os.name == 'iOS') { let wv = this.$scope.$getAppWebview(); wv.setStyle({ background: 'transparent', backgroundColorTop: 'rgba(255,0,0,0)' }); } // #endif
2.<style>
page {
background-color: transparent;
}
</style>
关键字词:unia##