赞
踩
原生 app 上放置一张撑满屏幕的图片,创建一个 webView 盖在图片上。
要实现 webView 是透明的效果需要
1. iOS 侧:
- webView.backgroundColor = [UIColor clearColor];
- webView.opaque = NO;
2. 前端侧:
- <div className="dataCenter_container" style={{backgroundColor: 'transparent'}}>
- <div className="transparent-div" style={{backgroundColor: 'transparent'}}>我是透明的 div</div>
- <div className="non-transparent-div" style={{backgroundColor: 'white'}}>我是不透明 div</div>
- </div>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。