更改jQuery Mobile页脚按钮的高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改jQuery Mobile页脚按钮的高度相关的知识,希望对你有一定的参考价值。

场景:

  • 我从jQuery Mobile网站获取了页脚代码并将其合并到我的文件中。
  • 一切都运行良好,直到我尝试更改页脚按钮的高度。

所有:

  • 我希望按钮的底部高度为7.5%,但每次我尝试更改它时,它会在按钮下方留下一个灰色空间,并且它们保持相同的高度。

代码:

<!-- FOOTER -->
        <div data-role="footer" data-id="footer" data-position="fixed" style="height: 7.5%;">
            <div data-role="navbar" style="height: 7.5%">
                <ul>
                    <li><a href="#page1">Search</a></li>
                    <li><a href="#page2">Planner</a></li>
                    <li><a href="#page3">Jobs</a></li>
                </ul>
            </div><!-- /navbar -->
        </div><!-- /footer -->

At the bottom, the grey gap can be seen

答案

要确保它是视口的7.5%,您可以使用7.5vh。

<div data-role="footer" data-id="footer" data-position="fixed" style="height: 7.5vh;">
  <div data-role="navbar" style="height: 100%">
    <ul>
      <li><a href="#page1">Search</a></li>
      <li><a href="#page2">Planner</a></li>
      <li><a href="#page3">Jobs</a></li>
    </ul>
  </div><!-- /navbar -->
</div>

像那样的东西。

以上是关于更改jQuery Mobile页脚按钮的高度的主要内容,如果未能解决你的问题,请参考以下文章

Jquery Mobile 持久页脚 - 更改所有页面上的内容

jquery mobile - 单击页面后页脚可折叠向下展开

jQuery Mobile 和固定页脚

jQuery Mobile:在完全加载时修改 DOM 以使页面高度为 100%

iOS 7 Safari 干扰 jQuery Mobile 页脚

如何为所有jQuery Mobile页面调用页眉和页脚?