我遇到了 HTML5 视频的 currentTime 属性的问题。我的小程序根据设备分辨率提供不同的视频(不同的分辨率)。我想在每个 window.onload、window.resize 和 window.orientationchange-Event 之后检查设备分辨率。在这些事件之后,可能会提供新视频(使用不同的更合适的分辨率)。我不想再次在第 0 秒开始播放视频,因此我尝试在事件发生之前捕获视频的 currentTime。我的解决方案在 IE 10 中运行良好。但是所有其他浏览器都失败了......我不知道为什么......
请不要刻薄……我对所有这些网络东西都很陌生,我真的尽我所能。
希望你们中的任何人都可以帮助我...
这是我的代码:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum- scale=1">
</head>
<body>
<video id=videoPlayer controls="controls"> </video>
<script>
var pixelRatio = 1.0;
var availScreenWidth;
var availScreenHeight;
var videoResolution;
var type;
var video = document.getElementById('videoPlayer');
var pos;
window.onload = updateVideo;
window.orientationchange = updateVideo;
window.onresize = updateVideo;
function updateVideo(){
pos = video.currentTime;
updateResolution();
if(availScreenWidth <800){
videoResolution = '640x360';
}
if(availScreenWidth >=800 && availScreenWidth < 1137){
videoResolution = '960x540';
}
if(availScreenWidth >=1137 && availScreenWidth < 1367){
videoResolution = '1280x720';
}
if(availScreenWidth >=1367 && availScreenWidth < 1681){
videoResolution = '1600x900';
}
if(availScreenWidth >= 1681){
videoResolution = '1920x1080';
}
if (video.canPlayType("video/webm") == 'maybe' || video.canPlayType("video/webm") == 'probably') {
type = '.webm';
}
else if (video.canPlayType("video/mp4") == 'maybe' || video.canPlayType("video/mp4") == 'probably') {
type = '.mp4';
}
video.src = videoResolution + type;
video.addEventListener('loadedmetadata', function() {
video.currentTime = pos;
video.play();}, false);
}
video.load();
function updateResolution(){
if (window.devicePixelRatio){
pixelRatio = window.devicePixelRatio;
}
availScreenWidth = document.documentElement.clientWidth * pixelRatio;
availScreenHeight = document.documentElement.clientHeight * pixelRatio;
}
</script>
</body>
</html>