jQWidgets jqxPopover animationOpenDelay Propiedad

jQWidgets es un marco de JavaScript para crear aplicaciones basadas en web para PC y dispositivos móviles. Es un marco muy potente, optimizado, independiente de la plataforma y ampliamente compatible. el jqxpopoveres una pequeña superposición del contenido que se utiliza para mostrar información secundaria de cualquier elemento cuando un usuario hace clic en él.

La propiedad animationOpenDelay se usa para configurar u obtener el tiempo para mostrar el widget jqxPopover especificado. Sus posibles valores son ‘ rápido ‘, ‘ lento’ y tiempo en milisegundos (por ejemplo 1000).

Sintaxis:

  • Para configurar la propiedad animationOpenDelay .

    $('#jqxPopover').jqxPopover({animationOpenDelay: 'slow'});
  •  

  • Para obtener la propiedad animationOpenDelay .

    var arrowOffsetValue = $('#jqxPopover')
        .jqxPopover('animationOpenDelay');

Archivos vinculados: descargue jQWidgets desde el enlace dado. En el archivo HTML, busque los archivos de script en la carpeta descargada.

<link rel=”hoja de estilo” 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>

Ejemplo: El siguiente ejemplo ilustra la propiedad jQWidgets jqxPopover animationOpenDelay . En el siguiente ejemplo, el valor de la propiedad animationOpenDelay se ha establecido en ‘lento’.

HTML

<!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 animationOpenDelay 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_animationOpenDelay"
               value="Value of the animationOpenDelay property"/>
        <div id="log"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_Popover").jqxPopover({
                    width: 180,
                    height: 70,
                    animationOpenDelay: 'slow',
                    theme: 'energyblue',
                    autoClose: false,
                    selector: $("#button_for_Popover"),
                    title: 'Company_Name'
                });
                $("#button_for_Popover").jqxButton({
                    width: 200,
                    theme: 'energyblue'
                });
                $("#button_for_animationOpenDelay").jqxButton({
                    width: 300,
                    theme: 'energyblue'
                });
                $('#button_for_animationOpenDelay')
                .jqxButton(). click(function () {
                    var Value_of_animationOpenDelay =
                        $('#jqx_Popover').jqxPopover(
                        'animationOpenDelay');
  
                        $("#log").html((
                        Value_of_animationOpenDelay));
                })
            });
        </script>
    </center>
</body>
</html>

Producción:

Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxpopover/jquery-popover-api.htm?search=

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *