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 animationType se utiliza para establecer o devolver el tipo de animación utilizada para mostrar/ocultar el panel. Acepta valores de tipo String y su valor por defecto es “fade”.
Sus posibles valores son:
- ‘desteñir’
- ‘deslizar’
- ‘ninguna’
Sintaxis:
-
Establezca la propiedad animationType.
$('selector').jqxResponsivePanel({ animationType: String });
-
Devuelve la propiedad animationType.
var animationType = $('selector') .jqxResponsivePanel('animationType');
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 animationType 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 animationType 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' }); }); </script> </body> </html>
Producción: