Frontend/HTML: FIN
[HTML] 멀티미디어 태그
cogito30
2025. 3. 5. 22:18
반응형
멀티미디어 태그
더보기
Tag | Description |
<audio src="오디오주소" controls autoplay loop></audio> | 오디오 태그. controls로 재생바가 보여짐. autoplay로 자동재생. loop로 반복 재생 설정. preaload 속성은 파일을 모두 로딩 후 재생 |
<video src="비디오주소" controls autoplay loop poster="이미지주소"></video> | 비디오 태그. controls로 재생바 설정. autoplay로 자동재생. loop로 반복 재생. muted로 음소거 설정. poster로 비디오 이미지 설정 |
<source src="주소"></source> | 오디오, 비디오 원본 연동 태그 |
멀티미디어 태그 예시
더보기
<body>
<audio src="img/test.mp4" controls autoplay></audio>
<video src="img/test.mp4" controls autoplay> </video>
</body>
반응형