-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
63 lines (54 loc) · 2.2 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="apple-touch-icon"
href="http://www.w3.org/html/logo/downloads/HTML5_Logo_64.png" />
<link rel="apple-touch-icon-precomposed"
href="http://www.w3.org/html/logo/downloads/HTML5_Logo_64.png" />
<title>Impasse JS</title>
<link rel="stylesheet" href="css/impasse.css" >
<style>
body {
margin-top: 30px;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39365077-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="impasse"></div>
<a href="https://github.com/szimek/impasse-js"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
<div id="description">
<p>
<strong>HTML5/JS port of Impasse</strong> - "a difficult and different minimalist puzzle game".<br>
Originally written by <strong>Wanderlands</strong>.<br>
You can play the original version <strong><a href="https://www.kongregate.com/games/wanderlands/impasse">here</a></strong>.
</p>
<p>
It should work on any browser that supports CSS3 animations<br>
(i.e. Chrome, Safari, Firefox and Opera 12.50).
</p>
<p>
For mobile version go <strong><a href="https://szimek.github.io/impasse-js/mobile.html">here</a></strong>.
</p>
<p>
<strong>TIP</strong>: You can use '+' and '-' to skip levels.
</p>
</div>
<script src="js/zepto.min.js"></script>
<script src="js/throttle.js"></script>
<script src="js/impasse.js"></script>
<script>new ig.Game()</script>
</body>
</html>