jQWidgets jqxPopover animationCloseDelay属性

jQWidgets jqxPopover animationCloseDelay属性

jQWidgets是一个JavaScript框架,用于为PC和移动设备制作基于Web的应用程序。它是一个非常强大的、优化的、与平台无关的、并被广泛支持的框架。jqxPopover是内容的一个小覆盖层,当用户点击时,用于显示任何元素的次要信息。

animationCloseDelay属性用于设置或获得关闭指定的jqxPopover部件的时间。它可能的值是’fast’,’slow’,和以毫秒为单位的时间(例如1000)。

语法:

  • 用于设置animationCloseDelay属性。
$('#jqxPopover').jqxPopover({animationCloseDelay: 'slow'});
  • 用于获取animationCloseDelay属性。
var arrowOffsetValue = 
        $('#jqxPopover').jqxPopover('animationCloseDelay');

链接的文件:从给出的链接中下载jQWidgets。在HTML文件中,找到下载文件夹中的脚本文件。

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css”/>
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxpopover.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

例子:下面的例子说明了jQWidgets jqxPopover animationCloseDelay属性。在下面的例子中,animationCloseDelay 属性的值已经被设置为’slow’。

<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css"
          type="text/css"/>
    <script type="text/javascript" 
            src="scripts/jquery.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxbuttons.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqxpopover.js">
    </script>
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js">
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h3>jQWidgets jqxPopover animationCloseDelay Property</h3>
  
        <div id='jqx_Popover'>
            <center>
                GeeksforGeeks
            </center>
        </div>
  
        <input type="button" style="margin:28px;" 
               id="button_for_Popover" 
               value="Toggle the Popover" />
  
        <input type="button" style="margin: 65px;" 
               id="button_for_animationCloseDelay"
               value="Value of the animationCloseDelay property"/>
  
        <div id="log"></div>
  
        <script type="text/javascript">
            (document).ready(function () {
                ("#jqx_Popover").jqxPopover({
                    width: 180,
                    height: 70,
                    animationCloseDelay: 'slow',
                    theme: 'energyblue',
                    selector: ("#button_for_Popover"),
                    title: 'Company_Name'
                });
                ("#button_for_Popover").jqxButton({
                    width: 200,
                    theme: 'energyblue'
                });
                ("#button_for_animationCloseDelay").jqxButton({
                    width: 300,
                    theme: 'energyblue'
                });
                ('#button_for_animationCloseDelay')
                .jqxButton().click(function () {
                    var Value_of_animationCloseDelay =
                        ('#jqx_Popover').jqxPopover('animationCloseDelay');
                     ("#log").html((Value_of_animationCloseDelay));
                })
            });
        </script>
    </center>
</body>
</html>

输出:

jQWidgets jqxPopover animationCloseDelay属性

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程