-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Finger+Paint' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet">
<title>One Pixel Games</title>
<script src="scripts/ext_libs/jquery.js"></script>
<script src="scripts/ext_libs/howler.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/game_a.js"></script>
<script src="scripts/game_b.js"></script>
<script src="scripts/game_c.js"></script>
<script src="scripts/game_d.js"></script>
<script src="scripts/game_e.js"></script>
</head>
<body>
<h1>ONE PIXEL GAMES</h1>
<p class="author"></p>
<p>My constraint here, adapted from the <a href="http://www.ludumdare.com/compo/ludum-dare-28/">Ludum Dare #28 contest</a> theme, is :</p>
<p style="color: #FF8; font-size: 1.2em">“ You get only one... pixel to make a game ”</p>
<p>It implies no intro screen, no explanations of the rules... you are all by yourself</p>
<div class="container">
<div class="game gameA">
<div class="img_positionner">
<img src="img/here_1.png"/>
<div class="magnifier"><span>need a zoom ?</span></div>
</div>
<h2>Game A</h2>
<canvas id="gameA" class="gameCanvas" height="1" width="1"></canvas>
</div>
<div class="game gameB">
<div class="img_positionner">
<img src="img/here_4.png"/>
<div class="magnifier"><span>need a zoom ?</span></div>
</div>
<h2>Game B</h2>
<canvas id="gameB" class="gameCanvas" height="1" width="1"></canvas>
</div>
<div class="game gameC">
<div class="img_positionner">
<img src="img/here_2.png"/>
<div class="magnifier"><span>need a zoom ?</span></div>
</div>
<h2>Game C</h2>
<canvas id="gameC" class="gameCanvas" height="1" width="1"></canvas>
</div>
<div class="game gameD">
<div class="img_positionner">
<img src="img/here_3.png"/>
<div class="magnifier"><span>need a zoom ?</span></div>
</div>
<h2>Game D</h2>
<canvas id="gameD" class="gameCanvas" height="1" width="1"></canvas>
</div>
<div class="game gameE">
<div class="img_positionner">
<img src="img/where.png"/>
<div class="magnifier_broken"><span>zoom is broken :-(</span></div>
</div>
<h2>Game E</h2>
<canvas id="gameE" class="gameCanvas" height="1" width="1"></canvas>
</div>
<p class="explanations">Note : all games on this page are actually 1 px by 1 px canvas elements. Zoom is done with CSS and your graphic card.</p>
</div>
</body>
</html>