phonegap android不透明文物

时间:2014-04-03 19:59:59

标签: html css cordova overlay transparent

在显示带按钮的透明覆盖时,我会面对一些看起来很糟糕的神器。还有其他人面对/修复了吗?

它发生在:Phonegap 2.9,三星Galaxy s3与css:

#overlay.black {
background-color: #000000;
z-index: 99999;
width: 100%;
height: 100%;
position: absolute;
opacity: 0.6;
filter: alpha(opacity=60); }

black artifacts

2 个答案:

答案 0 :(得分:2)

通过添加:

解决
background-color: rgba(0, 0, 0, 0.5);

在css的末尾。

答案 1 :(得分:0)

较新版本似乎需要background-color: hsla(0, 0%, 0%, 0.5);而不是background-color: rgba(0, 0, 0, 0.5);