blob: 4d313a6f50cdc997e24a55cc9b12cbaf613ecdce (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Whack a mole</title>
<script defer src="maulwurf.js"></script>
<style>
[name=huegel]{width:90px;position:absolute;top:5px;background-color:#754119;border-radius:50%;height:90px}
[name=maulwurf]{width:50px;left:20px;top:20px;border-radius:50%;background-color:black;visibility:hidden;height:50px;position:absolute}
#score{position:absolute;top:5px;left:5px;font-size:30px;}
body{width:100%;height:100%;background-color:#A6BE3D}
</style>
</head>
<body>
<center>
<h1>Whack a mole</h1>
<div style="width:700px;position:relative;height:100px;">
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
<div name="huegel"><div name="maulwurf"></div></div>
</div>
<span id="score"></span>
</center>
</body>
</html>
|