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

HTML에서 끝날 때마다 오디오/비디오가 다시 시작되도록 지정하는 방법은 무엇입니까?


루프 사용 오디오/비디오가 다시 시작되도록 지정하는 속성입니다. 다음 코드를 실행하여 루프를 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE HTML>
<html>
   <body>

      <video width = "300" height = "200" controls loop>
         <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>