멀티미디어 태그
더보기
Tag | Description |
<audio src="오디오주소" controls autoplay loop></audio> | 오디오 태그. controls로 재생바가 보여짐. autoplay로 자동재생. loop로 반복 재생 설정. preaload 속성은 파일을 모두 로딩 후 재생 |
<video src="비디오주소" controls autoplay loop poster="이미지주소"></video> | 비디오 태그. controls로 재생바 설정. autoplay로 자동재생. loop로 반복 재생. muted로 음소거 설정. poster로 비디오 이미지 설정 |
멀티미디어 태그 예시
더보기
<body>
<audio src="img/test.mp4" controls autoplay></audio>
<video src="img/test.mp4" controls autoplay> </video>
</body>
'웹 퍼블리싱 자료집 > HTML: FIN' 카테고리의 다른 글
[HTML] 외부파일 연동(CSS, JavaScript) (1) | 2025.03.05 |
---|---|
[HTML] 폼 태그 (0) | 2025.03.05 |
[HTML] 목록 Tag (0) | 2025.03.05 |
[HTML] 서식 Tag (0) | 2025.03.05 |
[HTML] Semantic Tag (0) | 2025.03.05 |