我在一个网页上玩HTML5视频,网页上有常用的控件-播放/暂停、音轨、音量和全屏。这些视频是mp4/ogg格式的。我80%的用户群使用Internet Explorer 11(由Google Analytics提供),其余用户则使用Mozilla Firefox、Chrome和Safari。问题是,除了全屏控件外,所有控件都不会出现在IE11上。在所有其他浏览器上都能像符咒一样工作。
caniuse[dot]com/#feat=fullscreen表明IE11具有原生的全屏支持。
这里有一个例子:
此页面上的嵌入视频允许使用按钮全屏显示。
在元素上使用带有"controls"属性的相同代码不会在IE11上显示全屏选项。
Fiddle:http://jsfiddle.net/jaisfiddles/f1apusx3/
<video controls>
<source src=http://techslides.com/demos/sample-videos/small.webm type=video/webm>
<source src=http://techslides.com/demos/sample-videos/small.ogv type=video/ogg>
<source src=http://techslides.com/demos/sample-videos/small.mp4 type=video/mp4>
<source src=http://techslides.com/demos/sample-videos/small.3gp type=video/3gp>
</video>
我错过了什么?我的印象是IE11启用了msRequestFullscreen()api代码。
我自己似乎偶然发现了这个解决方案。
我的video
元素包含在iFrame
中。为了使全屏选项可用,我指定了
<iframe allowfullscreen="true">
对于其他主流浏览器,如Mozilla Firefox、Chrome等,这是没有必要的。
请参阅上的已知问题http://caniuse.com/#feat=fullscreen
"当从iframe打开时,IE 11不正确地支持全屏。"
我在一些网站上看到IE11不支持全屏!!!直到版本11,它才支持全屏api。即使IE10也没有全屏API!!因为它们是本地控件;他们不使用全屏API。
允许通过创建重定向.html从chrome打开;
http://~~/redirect.html?redirectUrl=<your adress>
redirect.html>>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="tr">
<head>
<title>Please wait..Lütfen Bekleyiniz...</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
function openURL() {
debugger;
var url = getParameterByName("redirectUrl");
if (!url)
return;
if (msieversion()) {
var shell = new ActiveXObject("WScript.Shell");
shell.run("Chrome " + url);
window.open('', '_self', '');
window.close();
}
else {
window.location.href = url;
}
}
function msieversion() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv:11./)) // If Internet Explorer, return version number
{
return true;
}
return false;
}
function getParameterByName(name, url) {
debugger;
if (!url) url = window.location.href;
// name = name.replace(/[[]]/g, "\$&");
// var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
name = name.replace(/[[]]/g, "\$&");
var regex = new RegExp("[?]" + name + "(=([^]*)||$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/+/g, " "));
}
</script>
</head>
<body onload="openURL()">
</body>
</html>