jQWidgets jqxResponsivePanel animationDirection 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 jqxResponsivePanel es un widget de jQuery que se utiliza para representar un widget de panel con un comportamiento receptivo. El panel receptivo se utiliza para mostrar el contenido de manera receptiva. Este panel se colapsa cuando el ancho de la ventana del navegador es menor que un valor establecido y después de hacer clic en el botón, podemos acceder al valor.

La propiedad animationDirection se usa para establecer o devolver la dirección de la animación. Esta propiedad se utiliza cuando el valor de la propiedad «animationType» se establece en ‘slide’. Acepta valores de tipo String y su valor por defecto es “left”.

Sus posibles valores son:

  • ‘izquierda’
  • ‘Correcto’
  • ‘parte superior’
  • ‘abajo’

Sintaxis:

Establezca la propiedad animationDirection.

$('selector').jqxResponsivePanel({ 
    animationDirection: String 
});

Devuelve la propiedad animationDirection.

var animationDirection = $('selector')
    .jqxResponsivePanel('animationDirection');

Archivos vinculados: descargue jQWidgets desde el enlace https://www.jqwidgets.com/download/. 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-1.11.1.min .js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js ”></script>
<script type=”text/javascript” src=”jqwidgets/jqxresponsivepanel.js”></script>

El siguiente ejemplo ilustra la propiedad jqxResponsivePanel animationDirection en jQWidgets.

Ejemplo:

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-1.11.1.min.js">
    </script>
    <script type="text/javascript"
            src="jqwidgets/jqxcore.js">
    </script>
    <script type="text/javascript"
            src="jqwidgets/jqx-all.js">
    </script>
    <script type="text/javascript"
            src="jqwidgets/jqxresponsivepanel.js">
    </script>
 
    <style>
        h1,
        h3 {
            text-align: center;
        }
         
        #GFG {
            width: 100%;
            margin: 0 auto;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
 
    <h3>
        jQWidgets jqxResponsivePanel animationDirection Property
    </h3>
 
    <div id="GFG" style="width:400px;">
        <div style="border: 1px solid #e1e1e1">
            <div id="TRP"></div>
        </div>
 
        <div id="jqxRP" style="padding: 5px;">
            <h4>HTML</h4>
             
<p>
                HTML stands for HyperText Markup
                Language. It is used to design
                web pages using a markup language.
                HTML is the combination of Hypertext
                and Markup language. Hypertext
                defines the link between the web pages.
            </p>
 
 
        </div>
    </div>
 
    <script type="text/javascript">
        $(document).ready(function() {
            $('#jqxRP').jqxResponsivePanel({
                width: 400,
                height: 250,
                toggleButton: $('#TRP'),
                animationType: 'slide',
                animationDirection: 'top'
            });
        });
    </script>
</body>
 
</html>

Producción:

Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxresponsivepanel/jquery-responsive-panel-api.htm

Publicación traducida automáticamente

Artículo escrito por ppatelkap 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 *