我正在使用 phonegap 构建 android 应用程序。我现在面临的问题是,当我在列表视图中向下滚动时,底部的标签图标边框变得粗糙和恶化。有人可以帮我弄清楚为什么会发生这种情况以及如何解决它吗?我正在使用 css 添加所有图像。
更新
这是我的代码
css
footer {
position:fixed;
width: 100%;
height: 60px;
bottom:0;
left:0;
padding: 0;
line-height: 100px;
z-index:2;
background: url(../../assets/img/tabbg.png) repeat-x;
}
footer ul {
list-style-type: none;
margin: 0; padding: 0;
text-align: center;
}
footer ul li {
display: block;
float: left;
width: 33%; line-height: 50px;
margin-right: 0.5%;
height: 58px;
text-align: center;
overflow: hidden;
}
footer ul li.one {
margin-left: 0.5%;
}
footer ul li a {
display: block;
text-decoration: none;
margin: 1px;
height: 100%; width: 100%;
}
footer ul li a.home {
background: url(../../assets/img/home3.png) center no-repeat;
}
footer ul li a.profile {
background: url(../../assets/img/camera2.png) center no-repeat;
}
footer ul li a.cam {
background: url(../../assets/img/profile2.png) center no-repeat;
}
这是我的标签页
<footer>
<ul>
<li class="one"><a href="#" rel="home" class="home tabs"></a></li>
<li><a href="#" rel="camera" class="profile tabs"></a></li>
<li><a href="#" rel="profile" class="cam tabs"></a></li>
</ul>
</footer>