“JS spielen Sound” Code-Antworten

Spielen Sie Sound JavaScript

var audio = new Audio("folder_name/audio_file.mp3");
audio.play();
Combative Cheetah

JS Sound

var audio = new Audio('assets/audio.mp3');

> Play
audio.play();
> Stop
sound.pause();
> Back to start
sound.currentTime = 0;
Code Cat

JavaScript spielen Sound auf Klick

<audio id="audio" src="http://www.soundjay.com/button/beep-07.wav" autoplay="false" ></audio>
<a onclick="playSound();"> Play</a>
<script>
  function playSound() {
  var sound = document.getElementById("audio");
  sound.play();
}
</script>
Marton

Spielen Sie Sound in JavaScript

<script>
function play() {
  var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/examples/t-rex-roar.mp3');
  audio.play();
}
</script>
<button onclick-"play();">PLAY MY AUDIO</button>
ZDev1

JS spielen Sound

var audio = new Audio('audio_file.mp3');
audio.play();
Obnoxious Opossum

JS spielen Sound

const sound = require("sound-play");
sound.play("file.mp3");
Aggressive Antelope

Ähnliche Antworten wie “JS spielen Sound”

Fragen ähnlich wie “JS spielen Sound”

Weitere verwandte Antworten zu “JS spielen Sound” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen