forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
49 lines (46 loc) · 1.51 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
42
43
44
45
46
47
48
49
<html>
<head>
<title></title>
<meta charset="utf-8" />
<!-- OverlayPlugin widget resize handle -->
<link rel="stylesheet" href="../../resources/defaults.css">
<link rel="stylesheet" href="../../resources/resize_handle.css">
<script src="../../resources/common.js"></script>
<script src="../../resources/resize_handle.js"></script>
<script src="test.js"></script>
<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>hp: <span id="hp"></span> mp: <span id="mp"></span> cp: <span id="cp"></span> gp: <span id="gp"></span></div>
<div>id: <span id="id"></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">--</event>
</body>
</html>