martes, 13 de enero de 2015

Curso de jQuery Mobile 16 - Popup lightbox de imágenes




En esta parte continuamos con el elemento popup para crear un ligthbox de imágenes con responsive design.

Código de ejemplo del capítulo. popup-image.php ...


<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <title>Popup - lightbox de imágenes</title>
 <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.4.5.css">
 <script src="jquery.mobile/jquery.js"></script>
 <script src="jquery.mobile/jquery.mobile-1.4.5.js"></script>
</head>
<body>
 <div data-role="page" data-theme="a">
  <div data-role="header">
   <h1>Popup - lightbox de imágenes</h1>
  </div>
 
  <div data-role="main">
  
   <div class="ui-content">
    <a href="#imagen1" data-rel="popup" data-transition="fade" data-position-to="window">
    <img src="img/android.jpg" class="popphoto" alt="Android" style="width: 30%">
    </a>
    <a href="#imagen2" data-rel="popup" data-transition="fade" data-position-to="window">
    <img src="img/mac.jpg" class="popphoto" alt="MAC" style="width: 30%">
    </a>
    <a href="#imagen3" data-rel="popup" data-transition="fade" data-position-to="window">
    <img src="img/windowsphone.jpg" class="popphoto" alt="Windows Phone" style="width: 30%">
    </a>
    
    <div data-role="popup" id="imagen1">
    <a href="#" data-role="button" data-rel="back" data-icon="delete" data-iconpos="notext" class="ui-btn-right">
    Cerrar
    </a>
    <img src="img/android.jpg" class="popphoto" alt="Android" style="max-height: 350px">
    </div>
    
    <div data-role="popup" id="imagen2">
    <a href="#" data-role="button" data-rel="back" data-icon="delete" data-iconpos="notext" class="ui-btn-right">
    Cerrar
    </a>
    <img src="img/mac.jpg" class="popphoto" alt="MAC" style="max-height: 350px">
    </div>
    
    <div data-role="popup" id="imagen3">
    <a href="#" data-role="button" data-rel="back" data-icon="delete" data-iconpos="notext" class="ui-btn-right">
    Cerrar
    </a>
    <img src="img/windowsphone.jpg" class="popphoto" alt="Windows Phone" style="max-height: 350px">
    </div>
    
   </div>
  </div>
 
  <div data-role="footer">
   <div class="ui-content">
    <small>© Tutorial jQuery Mobile</small>
      </div>
     </div>
   </div>
   
</body>
</html>


Tutorial completo de jQuery Mobile en Youtube


No hay comentarios: