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