Ver Mensaje Individual
  #7 (permalink)  
Antiguo 13/11/2016, 06:42
boryi
 
Fecha de Ingreso: mayo-2011
Mensajes: 282
Antigüedad: 12 años, 11 meses
Puntos: 3
script para abrir videos .mp4 en fancybox

Hola buenas, tengo este script para abrir videos swf en fancybox, como lo podria modificar para abrir archivos mp4??

$(document).ready(function() {

$(".video").click(function() {
$.fancybox({
'padding' : 0,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'title' : this.title,
'width' : 640,
'height' : 385,
'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
'type' : 'swf',
'swf' : {
'wmode' : 'transparent',
'allowfullscreen' : 'true'
}
});
return false;
});
});

Mil gracias