Neueste Web-Entwicklung Tutorials
 

HTML Game Sound


Drehe die Lautstärke hoch. Hören Sie einen "dunk" , wenn das rote Quadrat auf ein Hindernis trifft?








Wie Sounds hinzufügen?

Verwenden Sie das HTML5 <audio> Element Sound und Musik in Ihre Spiele hinzuzufügen.

In unseren Beispielen erstellen wir ein neues Objekt Konstruktor Klangobjekte zu behandeln:

Beispiel

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();
    }
}

So erstellen Sie ein neues Sound - Objekt die Verwendung sound - Konstruktor, und wenn das rote Quadrat auf ein Hindernis trifft, spielen den Sound:

Beispiel

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;
        }
    }

...

}
Versuch es selber "

Hintergrundmusik

Um die Hintergrundmusik zu Ihrem Spiel hinzuzufügen, fügen Sie ein neues Sound-Objekt, und das Spiel beginnt, wenn Sie das Spiel starten:

Beispiel

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();
}
Versuch es selber "