Skip to content

Commit 4fa71c5

Browse files
Slotmachine added
1 parent 2ce8503 commit 4fa71c5

7 files changed

+140
-7
lines changed

css/controllers.css

+9-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
}
4444

45-
#btn-create-game, #btn-sim-hit, #btn-restart-game {
45+
#btn-create-game, #btn-sim-hit, #btn-restart-game, #btn-slotmachine {
4646
display: inline-block;
4747
padding: 5px;
4848
margin-top: 40px;
@@ -87,7 +87,14 @@
8787
height: 100%;
8888
background-color: #367d59;
8989
}
90-
90+
#slotmachine-container {
91+
position: absolute;
92+
display: none;
93+
width: 200px;
94+
top: 100px;
95+
left: 42%;
96+
margin: auto;
97+
}
9198
#message-container {
9299
position: absolute;
93100
display: none;

css/slotmachine.css

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#slotmachine {
2+
width: 100px;
3+
height: 100px;
4+
padding: 0px 0px 0px;
5+
margin: 0 auto;
6+
background: radial-gradient(ellipse at center, #0b4260 0%,#080c0f 100%);
7+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b4260 ', endColorstr='#080c0f ',GradientType=1 );
8+
border: 5px solid #008080;
9+
border-radius: 10px;
10+
-webkit-transition: all ease 1s;
11+
-moz-transition: all ease 1s;
12+
transition: all ease 1s;
13+
overflow: hidden;
14+
position: relative;
15+
display: inline-block;
16+
box-shadow: 0px 0px 60px 0px rgba(0,0,0, 0.4);
17+
}
18+
19+
span {
20+
position: absolute;
21+
top: -200px;
22+
left: -393px;
23+
height: 500px;
24+
width: 500px;
25+
background: url('../pics/powerups.png') no-repeat;
26+
}
27+
28+
29+
30+
.boost {
31+
-webkit-transform:rotate(0deg);
32+
-moz-transform: rotate(0deg);
33+
transform: rotate(0deg);
34+
35+
}
36+
.rapidfire {
37+
-webkit-transform:rotate(90deg);
38+
-moz-transform:rotate(90deg);
39+
transform:rotate(90deg);
40+
}
41+
42+
.shield {
43+
-webkit-transform:rotate(180deg);
44+
-moz-transform:rotate(180deg);
45+
transform:rotate(180deg);
46+
}
47+
48+
.health {
49+
-webkit-transform:rotate(270deg);
50+
-moz-transform:rotate(270deg);
51+
transform:rotate(270deg);
52+
}
53+
54+
.spin_forward {
55+
-webkit-animation: rotate 1s infinite;
56+
-webkit-animation-timing-function: linear;
57+
-moz-animation: rotate 1s infinite linear;
58+
}
59+
60+
@-webkit-keyframes rotate {
61+
from { -webkit-transform:rotate(0deg) }
62+
to { -webkit-transform:rotate(360deg) }
63+
}
64+
65+
@-moz-keyframes rotate {
66+
from { -moz-transform:rotate(0deg) }
67+
to { -moz-transform:rotate(360deg) }
68+
}

home.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<script src="js/gatt.js"></script>
1111
<script src="js/setBit.js"></script>
1212
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
13+
<link rel="stylesheet" type="text/css" href="css/slotmachine.css"></link>
1314
<link rel="stylesheet" type="text/css" href="css/stylesheet.css"></link>
1415
<link rel="stylesheet" type="text/css" href="css/controllers.css"></link>
1516

@@ -72,7 +73,7 @@ <h2 onclick="disconnect();" id='disconnect'>Disconnect</h2>
7273
var time = new Date();
7374
var e = time.getTime();
7475
toggleFullscreen();
75-
connect();
76+
//connect();
7677
setTimeout(function() {
7778
$('.column').load('include/controllers.html?t=' + e);
7879
}, 600);

include/controllers.html

+10-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
<div id="points" class="wait-till-game">
1414
♥ 10
1515
</div>
16-
16+
<div id="slotmachine-container">
17+
<div id="slotmachine">
18+
<span></span>
19+
</div>
20+
</div>
1721
<div id="message-container">
1822
<div id="message">
1923
</div>
@@ -30,6 +34,9 @@
3034
</div>
3135
<div id="btn-restart-game">
3236
Restart
37+
</div>
38+
<div id="btn-slotmachine">
39+
Slotmachine
3340
</div>
3441
</div>
3542
<div id="count-down">
@@ -45,9 +52,8 @@
4552
<div id="status-create-game">
4653
</div>
4754
<script src="js/virtualJoystick.js"></script>
48-
<script src="js/nipplejs.min.js"></script>
49-
50-
55+
<script src="js/nipplejs.min.js"></script>
56+
<script type="text/JavaScript" src="js/slotmachine.js"> </script>
5157

5258
<!-- Include demo version of the car controllers -->
5359
<script type="text/javascript" src="js/demo.js"></script>

js/slotmachine.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
var slotTimeOut = 2500;
2+
var running = false;
3+
4+
$(document).ready(function() {
5+
6+
$('#btn-slotmachine').on('touchstart mousedown', function() {
7+
if(running == false)
8+
startSlot();
9+
});
10+
11+
});
12+
13+
function startSlot () {
14+
running = true;
15+
16+
$('#slotmachine-container').fadeIn(1000);
17+
$('span').toggleClass(rand);
18+
$('span').addClass('spin_forward');
19+
20+
var powerups = ["boost", "rapidfire", "shield", "health"],
21+
22+
rand = powerups[Math.floor(Math.random() * powerups.length)];
23+
$('span').toggleClass(rand);
24+
console.log(rand);
25+
setTimeout(stopSlot, slotTimeOut);
26+
};
27+
28+
function stopSlot(){
29+
$('span').removeClass('spin_forward');
30+
setTimeout(slotFadeout, 5000);
31+
}
32+
33+
function slotFadeout() {
34+
$('#slotmachine-container').fadeOut(1000);
35+
running = false;
36+
}
37+
38+

pics/powerups.png

30.9 KB
Loading

slot.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<html>
2+
<head>
3+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.js"></script>
4+
<script type="text/JavaScript" src="js/slotmachine.js"> </script>
5+
<link rel="stylesheet" type="text/css" href="css/slotmachine.css"></link>
6+
7+
</head>
8+
<body>
9+
<div id="slotmachine">
10+
<span></span>
11+
</div>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)