-
Notifications
You must be signed in to change notification settings - Fork 1
/
p1.html
46 lines (43 loc) · 1.02 KB
/
p1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Player 1</title>
</head>
<body>
<table width="320px">
<tr width="100%">
<td width="33%"></td>
<td width="33%">
<img id="up" src="images/blueup.png" alt="Up">
</td>
</tr>
<tr width="100%">
<td width="33%">
<img id="left" src="images/blueleft.png" alt="Left">
</td>
<td width="33%">
</td>
<td width="33%">
<img id="right" src="images/blueright.png" alt="Right">
</td>
</tr>
<tr width="100%">
<td width="33%">
</td>
<td width="33%">
<img id="fire" src="images/attack.png" alt="Fire">
</td>
<td width="33%"> </td>
</tr>
</table>
<script src="jquery-1.6.4.js"></script>
<script>
$(document).ready(function(){
$("img").click(function(event){
$.ajax({ url: "writefifo.php?cmd=0-" + event.target.id});
});
});
</script>
</body>
</html>