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


jQuery Mobile panel animate用法及代码示例


jQuery Mobile 是一个基于 HTML5 的用户接口系统,旨在制作可在所有智能手机、平板电脑和桌面设备上访问的响应式网站和应用程序。

面板是用于创建列、抽屉、可折叠菜单等的小部件。它们是非常灵活的小部件,可用于多种目的。

在这篇文章中,我们将jQuery 移动面板动画化 选项。每当打开或关闭面板时,面板都会以动画形式缓慢打开和关闭。该选项采用布尔值,如果设置为错误的,面板立即工作。

用法: 这动画化 选项采用布尔值和默认值 值设置为真的。如果该选项设置为错误的,没有动画发生。如果选项是真的,动画作品。

$("#gfgpanel").panel({
    animate:false,
});
  • 获取动画化选项。

    var animate = $("#gfgpanel" ).panel( "option", "animate" );
  • 设置动画化选项。

    $("#gfgpanel").panel( "option", "animate", false );

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> 
    <meta charset="UTF-8" /> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 
    <meta name="viewport" content= 
         "width=device-width, initial-scale=1.0" /> 
    <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"> 
        <div data-role="header"> 
            <h1 style="color:green;">GeeksforGeeks</h1> 
        </div> 
        <div data-role="main" class="ui-content"> 
            <h4>jQuery Mobile Panel animate Option</h4> 
            <a href="#gfgpanel1" data-role="button"> 
               Open Panel 1</a> 
            <a href="#gfgpanel2" data-role="button"> 
               Open Panel 2</a> 
        </div> 
        <div data-role="panel" id="gfgpanel1"> 
            <div class="panel-content"></div> 
            <h2>Welcome to GeeksforGeeks</h2> 
            <p>Panel animate option is false</p> 
  
            <a href="#" data-rel="close" data-role="button"> 
               Close panel</a> 
        </div> 
        <div data-role="panel" id="gfgpanel2" data-position="right"> 
            <div class="panel-content"></div> 
            <h2>Welcome to GeeksforGeeks</h2> 
            <p>Panel animate option is true</p> 
  
            <a href="#" data-rel="close" data-role="button"> 
              Close panel</a> 
        </div> 
    </div> 
    <script> 
    $(document).ready(function() { 
        $("#gfgpanel1").panel({ 
            animate:false, 
        }); 
        $("#gfgpanel2").panel({ 
            animate:true, 
        }); 
    }); 
    </script> 
</body> 
</html>

输出:

jQuery Mobile panel animate Option

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



相关用法


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