video : 동영상 파일 재생하기


 

MP4 

WebM 

OGV 

IE 

파이어폭스 

크롬 

사파리 

오페라 




html)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
</head>
 
<body>
    <!-- 
    autoplay : 자동으로 비디오 실행
    controls : 컨트롤바 나타남
    width : 가로크기
    height : 세로크기
    loop : 반복재생
    poster : 비디오가 시작되기전 보여질 이미지
    src : 경로
    autobuffer : 사용자가 플레이하기전 미리 다운로드 할지 여부
     -->
    <video width="300px" height="300px" controls>
        <source src="images/example.mov" type="video/webm">
        <p>이 브라우저는 video 요소를 지원하지 않습니다.</p>
    </video>
</body>
</html>
cs



결과

+ Recent posts