-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (29 loc) · 1.22 KB
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="css/esheep.css" />
<title>Bart ten Brinke - eSheep.js</title>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<h2>Getting Started</h2>
<input type="button" id="spawnButton" value="Sheep!" />
<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="js/jquery.overlaps.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.class.js"></script>
<script type="text/javascript" src="js/esheep.js"></script>
<script type="text/javascript" src="js/sheep.js"></script>
<script type="text/javascript" src="js/alien.js"></script>
<script type="text/javascript">
// <![CDATA[
$('#spawnButton').click(function() {
ESheep.spawn();
});
// ]]>
</script>
</body>
</html>