gpt4 book ai didi

jquery-mobile - jQuery Mobile 底部导航栏

转载 作者:行者123 更新时间:2023-12-04 03:41:17 25 4
gpt4 key购买 nike

是否有适用于 iPhone/Mobile Safari 底部导航栏的 jQuery Mobile 示例代码?

我曾尝试自己进行谷歌搜索和编码,但我从未真正让它适用于 iPhone/Mobile Safari。其他浏览器似乎没问题,例如桌面 Safari、桌面 Chrome、Android 浏览器。

我尝试过的代码(它不适用于 Mobile Safari .. doh)

<div data-role="footer" data-position="fixed" data-tap-toggle="false">
<div data-role="navbar">
<ul>
<li><a href="#one" data-icon="custom">Entry</a></li>
<li><a href="#two" data-icon="custom">Winner</a></li>
<li><a href="#three" data-icon="custom">Gallery</a></li>
</ul>
</div><!-- /navbar -->
</div>

感谢任何帮助:)

谢谢。

最佳答案

尝试以下工作示例,使用自定义图标(使用 jQuery Mobile 1.2.0):

创建一个 css 文件 mycss.css 并在其中包含以下内容:

.ui-icon-custom {
background: url("../img/run.png") no-repeat rgba(0, 0, 0, 0.4) !important;
}

其中 run.png 是自定义图标的名称。

然后,在您的 html 文件中,包括以下内容:

<!DOCTYPE html>
<html>
<head>

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

<!-- LOAD YOUR CSS FILE WHILE PAYING ATTENTION TO ITS PATH! -->
<link rel="stylesheet" type="text/css" href="./css/mycss.css"/>

</head>

<body>

<div data-role="page">

<div data-role="content">
<h1>This is my content</h1>
</div>

<div data-role="footer" data-position="fixed" data-tap-toggle="false">
<div data-role="navbar">
<ul>
<li><a href="#one" data-icon="custom">Entry</a></li>
<li><a href="#two" data-icon="custom">Winner</a></li>
<li><a href="#three" data-icon="custom">Gallery</a></li>
</ul>
</div><!-- /navbar -->
</div>

</div>

</body>
</html>

屏幕截图(iPhone 5):

screenshot

PS:请注意您的 css/png 文件的路径!

让我知道这是否适合您。

关于jquery-mobile - jQuery Mobile 底部导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12890751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com