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 acolchada 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”></secuencia de comandos>
Ejemplo: Crearemos una ventana emergente rellena con texto formateado. El relleno emergente (15 px) se puede agregar usando la clase ui-content .
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> Design a popup with padding using jQuery Mobile </h4> <a href="#PaddingPopup" data-rel="popup" class="ui-btn ui-corner-all ui-shadow ui-btn-inline"> GeeksforGeeks Popup with padding </a> <div data-role="popup" id="PaddingPopup" class="ui-content"> <p> The ui-content class is used to add padding to container. </p> </div> </center> </body> </html>
Producción: