forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
41 lines (40 loc) · 1.25 KB
/
test.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
<html lang="en-US">
<head>
<title>Cactbot Test</title>
<meta charset="utf-8" />
<style>
body, html {
margin: 0;
}
html {
height: 100%;
overflow: hidden;
background-color: transparent;
/* FFXIV font look */
font-family: "Meiryo";
font-size: 12px;
text-shadow: -1px 0 3px #217AA2, 0 1px 3px #217AA2, 1px 0 3px #217AA2, 0 -1px 3px #217AA2;
font-weight: 300;
color: #E2EBF5;
}
div {
overflow: hidden;
padding-left: 2px;
padding-right: 2px;
}
</style>
</head>
<body>
<div id="currentZone">currentZone: --</div>
<div id="inCombat">inCombat: ?</div>
<div>name: <span id="name"></span> id: <span id="playerId"></span></div>
<div>hp: <span id="hp"></span> mp: <span id="mp"></span> cp: <span id="cp"></span> gp: <span id="gp"></span></div>
<div>job: <span id="job"></span> <span id="jobinfo"></span></div>
<div>pos: <span id="pos"></span></div>
<div>rotation: <span id="rotation"></span></div>
<div>bait: <span id="bait"></span></div>
<div>debug: <span id="debug"></span></div>
<div>target: <span id="target">--</span> id: <span id="tid"></span> distance: <span id="tdistance"></span></div>
<div id="event">--</div>
</body>
</html>