jQuery 플러그인 중에서, Audio / Video 재생시 사용할 수 있는 플러그인이 jPlayer 입니다
가장 큰 장점은 Internet Explorer 5 버전에서조차 실행할 수 있다는 것입니다.
아래 코드는 jPlayer 가 제공하는 샘플코드 중에서,
불필요한 부분은 제거하고, 가장 단순한 형태로 편집한 jPlayer 샘플입니다
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="./js/jplayer/dist/skin/blue.monday/css/jplayer.blue.monday.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="./js/jplayer/lib/jquery.min.js"></script>
<script type="text/javascript" src="./js/jplayer/dist/jplayer/jquery.jplayer.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#jquery_jplayer").jPlayer({
ready: function (event) {
$(this).jPlayer("setMedia", {
mp3: "test_music.mp3"
});
},
swfPath: "./js/jplayer/dist/jplayer",
supplied: "mp3",
cssSelectorAncestor: "#jp_container_2",
autoBlur: false
});
});
</script>
</head>
<body>
<div id="jquery_jplayer" class="jp-jplayer"></div>
<div id="jp_container_2" class="jp-audio" role="application" aria-label="media player">
<div class="jp-type-single">
<div class="jp-gui jp-interface">
<div class="jp-controls">
<button class="jp-play" role="button" tabindex="0">play</button>
<button class="jp-stop" role="button" tabindex="0">stop</button>
</div>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-controls">
<button class="jp-mute" role="button" tabindex="0">mute</button>
<button class="jp-volume-max" role="button" tabindex="0">max volume</button>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
</div>
<div class="jp-time-holder">
<div class="jp-current-time" role="timer" aria-label="time"> </div>
<div class="jp-duration" role="timer" aria-label="duration"> </div>
<div class="jp-toggles">
<button class="jp-repeat" role="button" tabindex="0">repeat</button>
</div>
</div>
</div>
<div class="jp-details">
<div class="jp-title" aria-label="title"> </div>
</div>
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>
</body>
</html>
jPlayer 를 다운로드 받은후에 압축을 해제해보면,
example 폴더나 dist 폴더 등이 있는데요,
jquery.jplayer.min.js 파일을 include 하기 위해서,
그 파일만 복사해서 다른 폴더에 올려놓고 사용할 경우, 작동이 안되는 것으로 봐서
폴더간에 서로서로 참조하는 코드가 포함된 듯 합니다.
저의 경우는 dist / lib / src 등등의 폴더가 그대로 포함되어 있는 전체폴더를 업로드하여
사용하고 있습니다.
jPlayer 기본 설명은 일전에 포스팅 했던 아래 포스팅을 참고하시기 바랍니다.
http://doolyit.tistory.com/admin/entry/post/?id=29
jQuery jPlayer 로 mp4 동영상 플레이 하기 (audio/video plugin jplayer) (0) | 2016.09.14 |
---|---|
jQuery prepend() 함수... 특정 엘리먼트 앞에 Insert (0) | 2016.09.14 |
jQuery 이미지크기 마우스로 조정하게 하기 Image Resize resizable() (0) | 2016.09.08 |
jQuery Image Resize 이미지크기 실제로 변경하기 (0) | 2016.09.08 |
javascript replace / replaceAll 문자열내 전체에서 대상문자변환, 문자열치환 (2) | 2016.09.08 |
댓글 영역