최신 웹 개발 튜토리얼
 

HTML autoplay Attribute


정의 및 사용

autoplay 속성은 부울 속성입니다.

존재하는 경우, 오디오 / 비디오가 자동으로 중지하지 않고 수행 할 수 있습니다 즉시 재생됩니다.


적용

autoplay 속성은 다음과 같은 요소에 사용할 수 있습니다 :

집단 속성
<audio> autoplay
<video> autoplay

자동으로 재생이 시작됩니다 오디오 파일 :

<audio controls autoplay>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
»그것을 자신을 시도

자동으로 재생이 시작됩니다 비디오 :

<video controls autoplay>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>
»그것을 자신을 시도

브라우저 지원

autoplay 속성은 각 요소에 대한 다음과 같은 브라우저 지원을하고있다 :

요소
audio 4.0 9.0 3.5 4.0 10.5
video 4.0 9.0 3.5 4.0 10.5