diff --git a/slots.html b/slots.html
index 723c6d9..121c923 100644
--- a/slots.html
+++ b/slots.html
@@ -31,9 +31,16 @@
$('.slot').html(items)
+ let sound = new Audio('snd/noize.mp3')
+ let playSound = () => {
+ sound.play()
+ }
+
$('.slot').jSlots({
number: data.number,
spinner : '#playNormal',
+ onStart: playSound,
+ time : 6000,
// winnerNumber : 7
});
diff --git a/snd/noize.mp3 b/snd/noize.mp3
new file mode 100644
index 0000000..eb5709b
Binary files /dev/null and b/snd/noize.mp3 differ