jQWidgets jqxPopover animationType 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 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 animationType se usa para configurar u obtener el tipo de animación para el widget jqxPopover especificado. Sus valores posibles son ‘ninguno’ y ‘desvanecerse’.

Sintaxis:

  • Para establecer la propiedad animationType .

    $('#jqxPopover').jqxPopover({animationType: 'fade'});
  •  

  • Para obtener la propiedad animationType .

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

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 animationType . En el siguiente ejemplo, el valor de la propiedad animationType se ha establecido en ‘fade’ .

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 animationType 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_animationType"
               value="Value of the animationType property"/>
        <div id="log"></div>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#jqx_Popover").jqxPopover({
                    width: 180,
                    height: 70,
                    animationType: 'fade',
                    theme: 'energyblue',
                    selector: $("#button_for_Popover"),
                    title: 'Company_Name'
                });
                $("#button_for_Popover").jqxButton({
                    width: 200,
                    theme: 'energyblue'
                });
                $("#button_for_animationType").jqxButton({
                    width: 300,
                    theme: 'energyblue'
                });
                $('#button_for_animationType')
                .jqxButton().click(function () {
                    var Value_of_animationType =
                        $('#jqx_Popover').jqxPopover('animationType');
                        $("#log").html((Value_of_animationType));
                })
            });
        </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 *