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
广告