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>
輸出:
參考:https://api.jquerymobile.com/navbar/#option-iconpos
相關用法
- jQuery Mobile Navbar initSelector用法及代碼示例
- jQuery Mobile Navbar classes用法及代碼示例
- jQuery Mobile Navbar defaults用法及代碼示例
- jQuery Mobile Navbar create用法及代碼示例
- jQuery Mobile Navbar disabled用法及代碼示例
- jQuery Mobile Selectmenu refresh()用法及代碼示例
- jQuery Mobile Loader hide()用法及代碼示例
- jQuery Mobile Popup disable()用法及代碼示例
- jQuery Mobile Loader show()用法及代碼示例
- jQuery Mobile Collapsible expand()用法及代碼示例
- jQuery Mobile Slider refresh()用法及代碼示例
- jQuery Mobile Loader loading()用法及代碼示例
- jQuery Mobile panel toggle()用法及代碼示例
- jQuery Mobile Slider disable()用法及代碼示例
- jQuery Mobile Pagecontainer load()用法及代碼示例
- jQuery Mobile Rangeslider destroy()用法及代碼示例
- jQuery Mobile Toolbar destroy()用法及代碼示例
- jQuery Mobile panel close()用法及代碼示例
- jQuery Mobile Popup option()用法及代碼示例
- jQuery Mobile Selectmenu disable()用法及代碼示例
- jQuery Mobile Collapsible destroy()用法及代碼示例
- jQuery Mobile Collapsible enable()用法及代碼示例
- jQuery Mobile Pagecontainer getActivePage()用法及代碼示例
- jQuery Mobile Collapsibleset destroy()用法及代碼示例
- jQuery Mobile Selectmenu destroy()用法及代碼示例
注:本文由純淨天空篩選整理自RajeevSarkar大神的英文原創作品 jQuery Mobile Navbar iconpos Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。