mirror of
https://github.com/He4eT/BadBarSlots.git
synced 2026-05-04 16:07:22 +00:00
36 lines
989 B
HTML
36 lines
989 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Slot Machine</title>
|
|
|
|
<link rel="stylesheet" href="css/style.css" type='text/css'>
|
|
</head>
|
|
|
|
<body id="playNormal">
|
|
<div class="wrap">
|
|
<div class="logo">
|
|
<img src="img/logo.svg" alt="">
|
|
</div>
|
|
<div class="slots">
|
|
<ul class="slot">
|
|
<li>adsf</li>
|
|
<li>sfgd</li>
|
|
<li>3fgd</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="js/jquery.min.js"></script>
|
|
<!-- <script src="js/jquery.easing.1.3.js" type="text/javascript" charset="utf-8"></script> -->
|
|
<script src="js/jquery.jSlots.min.js" type="text/javascript" charset="utf-8"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
$('.slot').jSlots({
|
|
number: 4,
|
|
spinner : '#playNormal',
|
|
// winnerNumber : 7
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|