0
我有三個不同的視頻,我想同時播放。如何將JavaScript代碼轉換爲JavaScript?
<div class="videoWrapper">
<video id="b" preload>
<source src="http://www.dendrosite.com/interactiu/paranoik.mp4" />
<source src="http://www.dendrosite.com/interactiu/paranoik.webm" />
</video>
</div>
<div class="videoWrapper">
<video id="c" preload>
<source src="http://www.dendrosite.com/interactiu/paranoik.mp4" />
<source src="http://www.dendrosite.com/interactiu/paranoik.webm" />
</video>
</div>
要做到這一點我創建了一個按鈕至極調用視頻,正確去,但我認爲更正確地將用javascript做到這一點。
<button onclick="document.getElementById('a').pause(); document.getElementById('b').pause(); document.getElementById('c').pause()" ><span><img src="../imatges/pause.png"></span>
Pause</button>
<button onclick="document.getElementById('a').play(); document.getElementById('b').play(); document.getElementById('c').play()"><img src="../imatges/play.png">
Play</button>
<button onclick="document.getElementById('a').currentTime = 0; document.getElementById('b').currentTime = 0; document.getElementById('c').currentTime = 0"><img src="../imatges/back.png">Back to Beginning</button>
<button onclick="document.getElementById('a').currentTime += 5; document.getElementById('b').currentTime += 5; document.getElementById('c').currentTime += 5"><img src="../imatges/skip.png">
Skip 5 Seconds</button>
的網址是:http://www.dendrosite.com/interactiu/interactiu.html
謝謝!
如果您的按鈕的作品,有什麼問題呢? – JJJ
@ aleish76 - 不要使用內聯事件。通過像jQuery這樣的JavaScript框架附加onclick事件,例如http://api.jquery.com/bind或http://api.jquery.com/live – nickytonline
我認爲你對[HTML和JavaScript]有一些基本的誤解(http://www.google.com/#sclient = PSY&HL = EN&源= HP&q =什麼是+之間的+差+ + HTML +和+的javascript&水溶液= F&AQI =&AQL =&OQ =&PBX = 1&BAV = on.2,or.r_gc.r_pw。&FP = 4e0d51cc84241161&BIW = 1680&波黑= 883 )... –