Files
Elite-Gaming-FiveM/resources/cd_holsteranimationsounds/html/ui.html
T

26 lines
739 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Holster</title>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script>
var audioPlayer = null;
window.addEventListener('message', function(event) {
if (event.data.transactionType == "playSound") {
if (audioPlayer != null) {
audioPlayer.pause()
}
audioPlayer = new Audio("./sounds/" + event.data.transactionFile + ".ogg");
audioPlayer.volume = event.data.transactionVolume;
audioPlayer.play();
}
});
</script>
</body>
</html>