【F2E】HTML5的Video使用筆記
<video>
<source src="影片網址" type="video/mp4">
Your browser does not support the video tag.<!--當影片沒辦法播放時會跑出這段文字-->
</video>
想要在網站上播放影片的話需要用到video
這個HTML Tag
如果影片需要自動播放的話就必須在video的標籤上面加上autoplay
<video autoplay>
<source src="影片網址" type="video/mp4">
Your browser does not support the video tag.<!--當影片沒辦法播放時會跑出這段文字-->
</video>
除了自動播放以外還能夠重複播放loop、靜音muted、影片控制介面controls、
<video autoplay loop>
<source src="影片網址" type="video/mp4">
Your browser does not support the video tag.<!--當影片沒辦法播放時會跑出這段文字-->
</video>