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, crearemos una ventana emergente Photo lightbox usando jQuery Mobile.
Enfoque: agregue los scripts jQuery Mobile necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”http://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>
Ejemplo: crearemos una ventana emergente de caja de luz de fotos usando jQuery Mobile. Se puede crear colocando una imagen en una ventana emergente.
HTML
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href= "http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src= "http://code.jquery.com/jquery-1.11.1.min.js"> </script> <script src= "http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> </script> </head> <body> <center> <h1>GeeksforGeeks</h1> <h4> Photo lightbox popup using jQuery Mobile </h4> <a href="#popupImage" data-rel="popup" data-position-to="window" data-transition="fade"> <img class="popphoto" src= "https://www.geeksforgeeks.org/wp-content/uploads/jquery-banner.png" alt="jQuery" style="width: 20%;"> </a> <div data-role="popup" id="popupImage" data-corners="false"> <a href="#" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn-a ui-icon-delete ui-btn-icon-notext ui-btn-right"> </a> <img class="popphoto" src= "https://www.geeksforgeeks.org/wp-content/uploads/jquery-banner.png" style="max-height:512px;" alt="jQuery Image"> </div> </center> </body> </html>
Producción: