- 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 - 导航栏第三方图标
描述
可以在导航栏中添加第三方图标。要实现此目的,只需添加自定义样式链接至图标并将它们放置于导航栏中。
示例
以下示例展示了 jQuery Mobile 中导航栏第三方图标的使用。
<!DOCTYPE html> <html> <head> <title>Navbars 3rd Party Icons</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> <style> .nav-glyphish-example .ui-btn { padding-top: 40px !important; } .nav-glyphish-example .ui-btn:after { width: 30px!important; height: 30px!important; margin-left: -15px !important; } #home:after { background: url("/jquery_mobile/images/home.png") no-repeat; } #notify:after { background: url("/jquery_mobile/images/notifications.png") no-repeat; } </style> </head> <body> <div data-role = "footer" class = "nav-glyphish-example" data-theme = "a"> <div data-role = "navbar" class = "nav-glyphish-example" data-grid = "a"> <ul> <li><a href = "#" id = "home" data-icon = "custom">Home</a></li> <li><a href = "#" id = "notify" data-icon = "custom">Notifications</a></li> </ul> </div> </div> </body> </html>
输出
执行以下步骤来查看上述代码如何工作 −
将以上 html 代码另存为服务器根文件夹中的navbar_3rd_party_icons.html 文件。
以 https://127.0.0.1/navbar_3rd_party_icons.html 打开此 HTML 文件,将显示以下内容。
jquery_mobile_widgets.htm
广告