Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

오디오/비디오가 HTML로 준비되는 즉시 재생을 시작하도록 지정하려면 어떻게 해야 합니까?


autoplay 속성을 사용하여 페이지가 로드될 때 오디오 또는 비디오가 자동으로 재생을 시작하도록 설정합니다.

예시

HTML에서 autoplay 속성을 구현하기 위해 다음 코드를 실행할 수 있습니다 -

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls autoplay>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>
   </body>
</html>