-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (38 loc) · 976 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE>
<html>
<head>
<title>Espresso slot machine</title>
<link rel="stylesheet" href="default.css" />
<link rel="stylesheet" href="style.css" />
<script src="js/log.js"></script>
<script src="js/jquery.js"></script>
<script src="js/jquery-highlight.js"></script>
</head>
<body>
<section id="espresso">
<div id="ESlots">
<ul class="clean">
<li>Not Initialized.</li>
<li>Not Initialized.</li>
<li>Not Initialized.</li>
</ul>
</div>
<div id="ELever">
<button>Push me to get someting cool!</button>
</div>
<div id="EResult">
This is where I will tell you what just happened. o__O
</div>
</section>
<script src="js/espresso.js"></script>
<script>
espresso( $('#espresso') ).init();
//now make some bubbles...
//why? Because I don't feel like...sleeping...
var howManyBubbles = 6;
for (var i=0; i<howManyBubbles; i++){
$('body').append('<div class="bubble"></div>');
}
</script>
</body>
</html>