코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML5 Multimedia Video</title> </head> <body> <h1>loop 속성을 이용한 동영상의 반복 재생</h1> <video width="576" height="360" controls loop> <source src="/examples/media/sample_video_mp4.mp4" type="video/mp4"> <source src="/examples/media/sample_video_ogg.ogg" type="video/ogg"> 이 문장은 사용자의 웹 브라우저가 video 요소를 지원하지 않을 때 나타납니다! </video> </body> </html>