我有这个html页面: 代码:
<html>
<!-- ... -->or explicity set the background-color CSS property to transparent:
<head>
<style type="text/css">
html,
body {
background-color: transparent;
}
</style>
<!-- ... -->
</head>
和uivewbview: 代码:
[webv setBackgroundColor:[UIColor colorWithWhite:1 alpha:0.8]];
[webv loadRequest....];
显示页面,但背景为白色。 如果我在页面结束后的开始结束之前滚动页面,我可以看到透明度(页面显示的位置) 我可以有一个完整的透明html页面,所以我可以看到uiwebview的背景? 谢谢
答案 0 :(得分:9)
只需将webView的opaque属性设置为NO
即可webv.opaque = NO;