“Video Player HTML5” Ответ

Video Player HTML5

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag. <!-- Text to be shown incase browser doesnt support html5 -->
</video>
Orion

HTML 5 видео

<video width="480" height="320" controls>
	// all browsers support mp4
  <source src="your_video_file_name.mp4" type="video/mp4">
   // safari doesn't support ogg
  <source src="your_video_file_name.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Winter Hope

базовый видеоплеер HTML

// basic video player html
<video class="video-container" controls muted autoplay loop>
  <source src="./video.mp4" type="video/mp4"/>
</video>
Victorious Vole

Video Player HTML5

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
</video>
Undefined

Ответы похожие на “Video Player HTML5”

Вопросы похожие на “Video Player HTML5”

Больше похожих ответов на “Video Player HTML5” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования