當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery Mobile Navbar iconpos用法及代碼示例


jQuery Mobile 是一種基於 Web 的技術,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。

在本文中,我們將學習 jQuery Mobile Navbar iconpos 選項。 iconpos 選項要求定位導航欄項目的圖標。

用法: iconpos 選項接受字符串輸入,並且應該是上述類型之一。默認值為“top”。

$("#gfgnavbar").navbar({
   iconpos: "right"
});

值:以下是該選項采用的值:

  • left:它將圖標放置在文本的左側。
  • right:它將圖標放置在文本的右側。
  • top:它將圖標放置在文本的頂部。
  • bottom:它將圖標放置在文本的底部。
  • none:圖標不出現。
  • notext:僅顯示圖標,不顯示文字。

CDN 鏈接:將以下 CDN 鏈接用於 jQuery Mobile 項目。

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

示例:在下麵的示例中,我們將圖標定位到正確的 使用 ”正確的” 值圖標位置選項。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" href= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script src= 
"https://code.jquery.com/jquery-1.11.1.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <div data-role="page" id="gfgpage"> 
        <div data-role="header"> 
            <h1 style="color: green;"> 
                GeeksforGeeks 
            </h1> 
        </div> 
        <div data-role="navbar" id="gfgnavbar"> 
            <ul> 
                <li> 
                    <a href="#one" data-icon="cloud"> 
                        One 
                    </a> 
                </li> 
                <li> 
                    <a href="#two" data-icon="star"> 
                        Two 
                    </a> 
                </li> 
            </ul> 
        </div> 
        <div data-role="main" 
             class="ui-content"> 
            <h3> 
              jQuery Mobile Navbar 
              iconpos Option 
            </h3> 
        </div> 
  
    </div> 
    <script> 
        $("#gfgnavbar").navbar({ 
            iconpos: "right" 
        }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery Mobile Navbar iconpos Option

參考:https://api.jquerymobile.com/navbar/#option-iconpos



相關用法


注:本文由純淨天空篩選整理自RajeevSarkar大神的英文原創作品 jQuery Mobile Navbar iconpos Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。