볼륨을 높이십시오. 당신은 듣지 마 "dunk" 붉은 광장은 장애물을 칠 때?
어떻게 소리를 추가하는 방법?
HTML5의 사용 <audio> 게임 사운드와 음악을 추가 할 요소를.
우리의 예에서 우리는 사운드 객체를 처리하기 위해 새로운 객체의 생성자를 만듭니다
예
function sound(src) {
this.sound =
document.createElement("audio");
this.sound.src = src;
this.sound.setAttribute("preload", "auto");
this.sound.setAttribute("controls", "none");
this.sound.style.display = "none";
document.body.appendChild(this.sound);
this.play =
function(){
this.sound.play();
}
this.stop =
function(){
this.sound.pause();
}
}
새로운 사운드 객체가 사용 만들려면 sound
생성자를하고 빨간색 사각형은 장애물을 칠 때, 사운드를 재생 :
예
var myGamePiece;
var myObstacles = [];
var
mySound;
function startGame() {
myGamePiece = new component(30, 30, "red" , 10, 120);
mySound = new sound("bounce.mp3");
myGameArea.start();
}
function updateGameArea() {
var x,
height, gap, minHeight, maxHeight, minGap, maxGap;
for (i = 0; i <
myObstacles.length; i += 1) {
if (myGamePiece.crashWith(myObstacles[i])) {
mySound.play();
myGameArea.stop();
return;
}
}
...
}
»그것을 자신을 시도 배경 음악
게임에 배경 음악을 추가하려면, 새로운 사운드 객체를 추가하고, 게임을 시작할 때 재생을 시작합니다 :
예
var myGamePiece;
var myObstacles = [];
var mySound;
var
myMusic;
function startGame() {
myGamePiece = new component(30, 30, "red" , 10, 120);
mySound = new sound("bounce.mp3");
myMusic =
new sound("gametheme.mp3");
myMusic.play();
myGameArea.start();
}
»그것을 자신을 시도