我在 Phone Gap 工作。我已经修复了一个页脚,这适用于少数设备,不适用于少数设备。
页脚的 HTML 代码
<div id="footer" style="background-image:url(img/bottom_bar.png);" class="footer">
<div id="footer_text" class="footer_text">footer</div>
<div id="info" class="info noSelect"><img src="img/info.png"/></div>
</div>
页脚的 CSS
.footer
{
width:100%; position:fixed; bottom:0; font-size:11px; color:#FFFFFF; text-align:center; height:30px;
}
.footer_text
{
text-indent:1%; float:left; text-align:center; width:75%; margin-top:2%;
}
对于少数设备,它位于屏幕底部……尽管内容溢出,对于少数设备,它会随着内容移动。
编辑:
根据 Filippos Karapetis Sir 的建议,我尝试实施 iscroll4
并初始化滚动
document.addEventListener("deviceready", onDeviceReady, false);
function scroll()
{
myScroll = new IScroll('.wrapper', { mouseWheel:true });
}
-----
-----
function onDeviceReady()
{
scroll();
----
----
页脚 CSS
.footer
{
width:100%; position:fixed; bottom:0; font-size:11px; color:#FFFFFF; text-align:center; height:30px;
}
.footer_text
{
text-indent:1%; float:left; text-align:center; width:75%; margin-top:2%;
}
问题是它只滚动一次