關於Google瀏覽器使用layer彈出層video標簽播放視屏無法全屏播放,而IE9+及Firefox瀏覽器都是正常全屏播放的,
處理方法即在彈窗時清除layer層中的layer-anim樣式屬性:
layer.open({
type: 2,
title: false,
shadeClose: true,
area: ['500px', '550px'],
content: url,
success: function(layero){
console.log(layero)
//處理layer層中video播放器全屏樣式問題
setTimeout(function() {
$(layero).removeClass('layer-anim');
}, 0);
}
});
