View Source ในหน้า Web Browser แล้วเอาส่วนของ Video Tags มาให้ดูหน่อยครับ
Date :
2015-01-06 12:31:43
By :
mr.win
No. 4
Guest
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<video width="400" height="320" controls="controls" autoplay="autoplay">
<source src="movie.mp4" type="video/mp4">
<p>Web Browser นี้ยังไม่รองรับ HTML Video</p>
</video>
<p>Resize the browser window to see how the size of the video player will scale.</p>
</body>
</html>
<video width="320" height="240" controls="controls">
<source src="FB_TEST.ogg" type="video/ogg" />
<source src="FB_TEST.mp4" type="video/mp4" />
<source src="FB_TEST.webm" type="video/webm" />
Your browser does not support the video tag.
</video>