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, utilizaremos el evento beforeshow jQuery Mobile Pagecontainer . Este evento se desenstring antes de que comience la animación de transición real.
Sintaxis: Inicializar el Pagecontainer con el evento beforeshow .
$( ".selector" ).pagecontainer({ beforeshow: function( event, ui ) {} });
Vincular un detector de eventos al evento Pagecontainer beforeshow .
$( ".selector" ).on( "pagecontainerbeforeshow", function( event, ui ) {} );
Parámetros: Este evento acepta dos parámetros que se ilustran a continuación:
- evento: Este es el evento especificado.
- ui: este parámetro acepta algunos valores que se dan a continuación:
- prevPage: este es un objeto de colección jQuery que contiene el elemento DOM de la página de origen.
- toPage: este es un objeto de colección jQuery que contiene el elemento DOM de la página de destino.
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 el evento jQuery Mobile Pagecontainer beforeshow .
HTML
<!doctype html> <html lang="en"> <head> <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" id="GFG1"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>jQuery Mobile Pagecontainer beforeshow Event</h3> <div data-role="header"> <h1>First Page</h1> </div> <div role="main"> <a href="#GFG2" data-transition="slide"> Go To Second Page</a> </div> <input type="button" id="Button" value="Invoke the beforeshow Event"> <div id="log"></div> </div> <div data-role="page" id="GFG2"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>jQuery Mobile Pagecontainer beforeshow Event</h3> <div data-role="header"> <h1>Second Page</h1> </div> <div role="main"> <a href="#GFG1" data-rel="back" data-transition="slide"> Go Back To First Page </a> </div> <input type="button" id="Button" value="Invoke the beforeshow Event"> <div id="log"></div> </div> </center> <script> $(document).ready(function () { $("#Button").on('click', function () { $("#GFG1").pagecontainer({ beforeshow: function (event, ui) { } }); $("#GFG1").on("pagecontainerbeforeshow", function (event, ui) { }); $("#log").html( 'beforeshow event has been triggered'); }); }); </script> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/pagecontainer/#event-beforeshow
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