-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathddr.html
86 lines (74 loc) · 1.97 KB
/
ddr.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
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<style>
.arrow
{
position: absolute;
width: 50px;
height: 50px;
}
.arrow-target
{
width: 50px;
height: 50px;
position: absolute;
top:0%;
z-index: -100000000;
}
.left, .leftc
{
left: 5px;
}
.down, .downc
{
left: 60px
}
.up, .upc
{
left: 115px;
}
.right, .rightc
{
left: 170px;
}
.a
{
left: 225px;
}
.b
{
left: 280px
}
.y
{
left: 335px;
}
.z
{
left: 390px;
}
.rt
{
left: 445px;
}
.text
{
left: 60px;
top: 90px;
position: absolute;
}
</style>
</head>
<body style="background-color: #00FF00;">
<img src="assets/arrow_down_target.png" class="arrow-target down"/>
<img src="assets/arrow_up_target.png" class="arrow-target up"/>
<img src="assets/arrow_left_target.png" class="arrow-target left"/>
<img src="assets/arrow_right_target.png" class="arrow-target right"/>
<img src="assets/arrow_a_target.png" class="arrow-target a"/>
<img src="assets/arrow_b_target.png" class="arrow-target b"/>
<img src="assets/arrow_y_target.png" class="arrow-target y"/>
<img src="assets/arrow_z_target.png" class="arrow-target z"/>
<img src="assets/arrow_rt_target.png" class="arrow-target rt"/>
<script src="replayer.js"></script>
</body>
</html>