Files
Elite-Gaming-FiveM-Backup/resources/rp-radio/index.html
T
Jacob e047d8f9ac Phone & identifier database base implementation
+ Added the phone which is working already.
+ Added RP-Radio for testing.
2022-01-13 21:32:45 +00:00

25 lines
581 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>rp-radio</title>
<script type="text/javascript">
window.addEventListener("message", function(event) {
var item = event.data;
if (item.sound && item.volume) {
document.getElementById(item.sound)
document.getElementById(item.sound).load();
document.getElementById(item.sound).volume = item.volume;
document.getElementById(item.sound).play();
}
});
</script>
</head>
<body>
<audio id="audio_on" src="on.ogg"></audio>
<audio id="audio_off" src="off.ogg"></audio>
</body>
</html>