21 lines
789 B
HTML
21 lines
789 B
HTML
<html>
|
|
<head>
|
|
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.1.1/howler.min.js" type="text/javascript"></script>
|
|
<script>
|
|
var audioPlayer = null;
|
|
window.addEventListener('message', function(event) {
|
|
if (event.data.submissionType == "rtcSounds") {
|
|
|
|
if (audioPlayer != null) {
|
|
audioPlayer.pause();
|
|
}
|
|
|
|
audioPlayer = new Howl({src: ["./sounds/" + event.data.submissionFile + ".ogg"]});
|
|
audioPlayer.volume(event.data.submissionVolume);
|
|
audioPlayer.play();
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
</html> |