var alertSound = new Audio('./sound/alert_sound.mp3'); // 오디오 객체 생성
$(".sound_play").click(function(event) {
console.log(alertSound.played.length) // 현재 play 체크
alertSound.play();
alertSound.loop = true; // 반복여부
});
$(".sound_pause").click(function(event) {
console.log(alertSound.paused) // 현재 paused 체크
alertSound.pause();
alertSound.currentTime = 0; // 재생을 처음으로 이동
});
$(".sound_volume_on").click(function(event) {
alertSound.muted = true; // 소리끄기
});
$(".sound_volume_off").click(function(event) {
alertSound.muted = false; // 소리켜기
});


참고 : http://www.w3schools.com/tags/ref_av_dom.asp

반응형
Posted by 힘없는염소