Последние учебники веб-разработки
 

HTML Game Sound


Прибавь громкости. Как вы слышите "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();
}
Попробуй сам "