0
Firefox現在支持視頻html5標籤上的全屏模式。 (右鍵點擊電影..)Firefox 3.6視頻全屏控件
有沒有什麼辦法來創建一個控制(html標籤)來做這個像這個play/pause例子(使用js)?
<script>
function play(){
var video = document.getElementById('movie');
var play = document.getElementById('play');
play.addEventListener('click',playControl,false);
function playControl() {
if (video.paused == false) {
video.pause();
this.firstChild.nodeValue = 'Play';
pauseCount();
} else {
video.play();
this.firstChild.nodeValue = 'Pause';
startCount();
}
}
}
好吧,但是這並沒有利用firefox的內部全屏實現。 – danidacar 2010-11-16 11:08:56
看看http://stackoverflow.com/questions/1055214/is-there-a-way-to-make-html5-video-fullscreen的第一個答案。 – 2010-11-16 11:11:00
好的,那是公約。 Firefox是否尊重這一點? – danidacar 2010-11-16 11:21:12