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 jqxPopover es 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 animationCloseDelay se usa para configurar u obtener el tiempo para cerrar el widget jqxPopover especificado. Sus posibles valores son ‘ rápido ‘, ‘ lento ‘ y tiempo en milisegundos (por ejemplo 1000).
Sintaxis:
-
Para configurar la propiedad animationCloseDelay .
$('#jqxPopover').jqxPopover({animationCloseDelay: 'slow'});
-
Para obtener la propiedad animationCloseDelay .
var arrowOffsetValue = $('#jqxPopover').jqxPopover('animationCloseDelay');
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 animationCloseDelay . En el siguiente ejemplo, el valor de la propiedad animationCloseDelay 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 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>
Producción:
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