<video id="myVideo" style="width:100%" controls="" preload="">
<source src="video/echo-hereweare.mp4" type="video/mp4" codecs="avc1.42E01E,mp4a.40.2">
<!--[if IE 8]>
<embed src="video/echo-hereweare.mp4" style="width:100%" autostart="false"/>
<![endif]--></video>//切換視頻清晰度function videoSourceChoose(){ var myVideo = document.getElementById("myVideo"); var url = myVideo.currentSrc; var nums = url.length; url = url.substring(0,nums-4)+"_small.mp4"; //視頻地址
var nowsTime = myVideo.currentTime; //視頻播放時間
myVideo.load();
}當點擊按鈕的時候調用此方法,切換為_small.mp4,別且從上次觀看的時間繼續播放。
H5 video標簽我要做一個切換清晰度的按鈕,請問如何解決
白板的微信
2018-08-23 15:35:24