当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。