mirror of
https://github.com/He4eT/BadBarSlots.git
synced 2026-05-05 00:17:23 +00:00
update
This commit is contained in:
parent
f7640ee06b
commit
ec2b5e02c6
3 changed files with 56 additions and 32 deletions
20
slots.html
20
slots.html
|
|
@ -2,8 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Slot Machine</title>
|
||||
|
||||
<title>BAD BAR Slots</title>
|
||||
<link rel="stylesheet" href="css/style.css" type='text/css'>
|
||||
</head>
|
||||
|
||||
|
|
@ -12,19 +11,21 @@
|
|||
<div class="logo">
|
||||
<img src="img/logo.svg" alt="">
|
||||
</div>
|
||||
<ul class="slot">
|
||||
<!-- <li>Гренадин</li>
|
||||
<li>Пусиджус</li>
|
||||
<li>Сопли</li> -->
|
||||
</ul>
|
||||
<div class="slot-wrap">
|
||||
<ul class="slot">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<!-- <script src="js/jquery.easing.1.3.js"></script> -->
|
||||
<script src="js/jquery.jSlots.min.js"></script>
|
||||
<script>
|
||||
let params = location.search.substr(1)
|
||||
let data = JSON.parse(decodeURI(params))
|
||||
let params = location.search.split('=')[1]
|
||||
let data = JSON.parse(
|
||||
decodeURIComponent(
|
||||
decodeURIComponent(params)
|
||||
))
|
||||
|
||||
let items = data.items
|
||||
.reduce((sum, cur) => sum + `<li>${cur}</li>`, '')
|
||||
|
|
@ -41,7 +42,6 @@
|
|||
spinner : '#playNormal',
|
||||
onStart: playSound,
|
||||
time : 6000,
|
||||
// winnerNumber : 7
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue