jQuery Mobile es una tecnología basada en la web que se utiliza para crear contenido receptivo al que se puede acceder en todos los teléfonos inteligentes, tabletas y computadoras de escritorio.
En este artículo, usaremos la opción deslizar Cerrar del panel de jQuery Mobile para establecer si el panel se puede cerrar deslizando el dedo hacia la izquierda o hacia la derecha sobre el panel.
Sintaxis:
Inicializando el panel con la opción swipeClose.
$( ".selector" ).panel({ swipeClose: true });
-
Configuración de la opción swipeClose.
$( ".selector" ).panel( "option", "swipeClose", true );
-
Obtener la opción swipeClose.
var theme = $( ".selector" ).panel( "option", "swipeClose" );
Enlace CDN: Primero, agregue los scripts de jQuery Mobile necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css”>
<script src=” //code.jquery.com/jquery-3.2.1.min.js”></script>
<script src=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile- 1.5.0-alpha.1.min.js”></secuencia de comandos>
Ejemplo: Este ejemplo describe la opción deslizar Cerrar del panel de jQuery Mobile . En el siguiente ejemplo, el panel se cierra deslizando el dedo hacia la izquierda en el panel.
HTML
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content= "width=device-width, initial-scale=1"> <link rel="stylesheet" href= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src= "//code.jquery.com/jquery-3.2.1.min.js"> </script> <script src= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> </script> </head> <body> <center> <div data-role="page"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>jQuery Mobile panel swipeClose Option</h3> <div role="main"> <a href="#GFG" data-role="button" data-inline="true" data-icon="bars">GeeksforGeeks</a> </div> <div data-role="panel" id="GFG" data-theme="b"> <div class="panel-content"> <h3>GeeksforGeeks</h3> <p>It is a computer science portal.</p> <a href="#demo-links" data-rel="close" data-role="button" data-theme="c" data-icon="delete" data-inline="true">Close this panel</a> </div> </div> <input type="button" id="Button" value="Value of the swipeClose option"> <div id="log"></div> </div> </center> <script> $(document).ready(function () { $("#GFG").panel({ swipeClose: true }); $("#GFG").panel("option", "swipeClose", true); $("#Button").on('click', function () { var a = $("#GFG").panel("option", "swipeClose"); $("#log").html(a); }); }); </script> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/panel/#option-swipeClose
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