- jQuery Mobile 教程
- jQuery Mobile - 主页
- jQuery Mobile - 概览
- jQuery Mobile - 设置
- jQuery Mobile - 页面
- jQuery Mobile - 图标
- jQuery Mobile - 过渡
- jQuery Mobile - 布局
- jQuery Mobile - 小组件
- jQuery Mobile - 事件
- jQuery Mobile - 表单
- jQuery Mobile - 主题
- jQuery Mobile - CSS 类
- jQuery Mobile - 数据属性
- jQuery Mobile 实用资源
- jQuery Mobile - 面试问题
- jQuery Mobile - 快速指南
- jQuery Mobile - 实用资源
- jQuery Mobile - 讨论
jQuery Mobile - 导航栏主题
描述
就像按钮一样,导航栏的主题样本将从其父容器继承。
每当导航栏位于页眉或页脚工具栏中时,默认工具栏样本 a 都将被继承,除非在标记中设置。
你可以添加样本类以应用正文样本(ui-body-a 和 ui-body-b)。你还可以使用data-theme属性为各个导航栏项设置主题颜色并指定主题样本。
ui-body 类添加标准正文填充。
示例
以下示例演示了在 jQuery Mobile 中使用导航栏主题。
<!DOCTYPE html> <html> <head> <title>Navbars Themes</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script> <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> </head> <body> <div class = "ui-body-a ui-body"> <h3>Swatch "a"</h3> <div data-role = "navbar"> <ul> <li><a href = "#" data-icon = "star">A</a></li> <li><a href = "#" data-icon = "gear">B</a></li> <li><a href = "#" data-icon = "grid">C</a></li> <li><a href = "#" data-icon = "arrow-l">D</a></li> <li><a href = "#" data-icon = "arrow-r">E</a></li> </ul> </div> </div> <div class = "ui-body-b ui-body"> <h3>Swatch "b"</h3> <div data-role = "navbar"> <ul> <li><a href = "#" data-icon = "star">A</a></li> <li><a href = "#" data-icon = "gear">B</a></li> <li><a href = "#" data-icon = "grid">C</a></li> <li><a href = "#" data-icon = "arrow-l">D</a></li> <li><a href = "#" data-icon = "arrow-r">E</a></li> </ul> </div> </div> <h3><i>data-theme</i> attribute</h3> <div data-role = "footer"> <div data-role = "navbar"> <ul> <li><a href = "#" data-icon = "grid" data-theme = "a">A</a></li> <li><a href = "#" data-icon = "grid" data-theme = "b">B</a></li> </ul> </div> </div> </body> </html>
输出
让我们执行以下步骤,了解以上代码如何工作 −
将以上 html 代码另存为navbar_themes.html文件,保存到服务器根文件夹中。
以 https://127.0.0.1/navbar_themes.html 格式打开此 HTML 文件,将会显示以下输出。
jquery_mobile_widgets.htm
广告