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


jQuery Mobile panel display用法及代码示例


jQuery Mobile 是一种基于网络的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。

在本文中,我们将使用 jQuery Mobile 面板显示选项来定义面板与页面内容的关系。此选项接受如下所示的三个值之一。

  • reveal: 该值用于将页面推倒。
  • push: 该值用于重排内容以使面板内容适合列。
  • overlay:该值用于覆盖内容。

句法:

初始化面板展示选项。

$( ".selector" ).panel({
  display: "overlay"
});
  • 设置展示选项。

    $( ".selector" ).panel( "option", "display", "overlay" );
  • 得到展示选项。

    var theme = $( ".selector" ).panel( "option", "display" );

CDN 链接:首先,添加项目所需的 jQuery Mobile 脚本。

<link rel=”stylesheet” href=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css”>
<script src=”//code.jquery.com/jquery-3.2.1.min.js”></script>
<script src=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js”></script>

例子:此示例说明了 jQuery Mobile 面板展示选项。

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <meta charset="utf-8"> 
    <meta name="viewport" content= 
       "width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href= 
"//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> 
    <script src= 
"//code.jquery.com/jquery-3.2.1.min.js"> 
    </script> 
    <script src= 
"//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <div data-role="page"> 
            <h1 style="color:green;"> 
                GeeksforGeeks 
            </h1> 
            <h3>jQuery Mobile panel display Option</h3> 
            <div role="main"> 
                <a href="#divID" data-role="button" data-inline="true" 
                   data-icon="bars">GeeksforGeeks</a> 
            </div> 
            <div data-role="panel" id="divID" data-theme="b"> 
                <div class="panel-content"> 
                    <h3>GeeksforGeeks</h3> 
                    <p>It is a computer science portal.</p> 
  
                    <a href="#demo-links" data-rel="close" 
                       data-role="button" data-theme="c" 
                       data-icon="delete"
                       data-inline="true">Close this panel</a> 
                </div> 
            </div> 
            <input type="button" id="Button" 
                   value="Value of the display option"> 
            <div id="log"></div> 
        </div> 
    </center> 
    <script> 
        $(document).ready(function () { 
            $("#divID").panel({ 
                display: "overlay" 
            }); 
            $("#divID").panel("option", "display", "overlay"); 
            $("#Button").on('click', function () { 
                var a = $("#divID").panel("option", "display"); 
                $("#log").html(a); 
            }); 
        }); 
    </script> 
</body> 
</html>

输出:

jQuery Mobile panel display Option

jQuery Mobile 面板显示选项

参考: https://api.jquerymobile.com/panel/#option-display



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 jQuery Mobile panel display Option。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。