运行 jquerymobile Web 应用程序时,operamobile 浏览器屏幕底部出现空白?

发布于 2024-10-21 08:56:46 字数 268 浏览 1 评论 0原文

正在使用 jquerymobile 开发一款移动 Web 应用程序。我有页眉、一些字段控件和页脚,我为页脚设置了数据位置=“固定”,以便页脚位于屏幕底部,我在所有手机本机浏览器(如 safari、bb)中完美地实现了这一点,安卓原生。但是,当我在 OperaMobile 浏览器中运行时,我在屏幕底部看到页脚,只有在长时间向下滚动后才能看到该页脚,并且页脚上方也出现一些没有背景颜色的空白。我不知道这个问题是什么,是 Operamobile 浏览器兼容性还是我们必须在 css 中指定的任何其他问题?有人遇到过这个问题吗?

Am developing one mobile web application using jquerymobile. i have header ,some field controls, and footer, i set the data-position ="fixed" for footer so that the footer will come bottom of the screen, i am getting this perfectly in all mobiles native browser,like safari,bb,android native. But when i running in the operamobile browser i am getting the footer in the bottom of the screen i can only seen this footer after long scroll down and also am getting some whitespace without background color above the footer. I don't know what is this problem, is it operamobile browser compatibility or anyother thing we have to specify in the css? has anyone faced this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

茶花眉 2024-10-28 08:56:46

我们在 Android 浏览器中看到了空格问题。从a3切换回a2解决了问题。

We saw the whitespace problem in the Android browser. Switching back from a3 to a2 solved the problem.

神经暖 2024-10-28 08:56:46

为了避免 jquerymobile 1.0b3 在“纵向”方向底部出现空白,您应该在 css 中重新定义“min-height”:

<style type="text/css">
   .portrait,
   .portrait .ui-page { min-height: 300px; }
</style>

To avoid white space at bottom in "portrait" orientation with jquerymobile 1.0b3 you should redefine "min-height" in css:

<style type="text/css">
   .portrait,
   .portrait .ui-page { min-height: 300px; }
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文