Ver Mensaje Individual
  #10 (permalink)  
Antiguo 10/04/2015, 16:25
superweb360
(Desactivado)
 
Fecha de Ingreso: abril-2015
Ubicación: España
Mensajes: 616
Antigüedad: 9 años, 7 meses
Puntos: 74
Respuesta: Ocultar contenido cuando popup abierto

Acabo de ejecutar el magnific popup en mi ordenador y los callbacks me funcionan perfectamente. Este es el código que he puesto:

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="magnific-popup.css">
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
  4. <script src="jquery.magnific-popup.js"></script></head>
  5. $(document).ready(function() {
  6.     $('.test-popup-link').magnificPopup({
  7.       type: 'image',
  8.       items:{
  9.       src: 'lion.jpg',
  10.       },
  11.       callbacks: {
  12.        open: function() {
  13.          alert('open');
  14.        },
  15.        close: function() {
  16.          alert('close');
  17.        }
  18.       }
  19.     });
  20. });
  21. <a class="test-popup-link" href="path-to-image.jpg">Open popup</a>
  22. </body>
  23. </html>

Última edición por superweb360; 10/04/2015 a las 16:58