-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnmityList.html
65 lines (58 loc) · 2.25 KB
/
EnmityList.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
<html>
<head>
<meta charset="utf-8">
<title>aggrolist</title>
<link rel="stylesheet" href="css/aggrolist.css">
</head>
<body id="aggrolist" v-class="resize-handle: !locked">
<!-- outer -->
<div class="outer {{hide ? 'hide' : ''}}">
<!-- innner -->
<div v-if="updated" class="inner">
<!-- Combatants Table -->
<table id="combatants" v-show="!collapsed">
<!-- Table Header -->
<thead class="gold">
</thead>
<!-- Table Body -->
<tbody class="blue">
<!-- Vue Repeat Template -->
<template v-repeat="combatant: combatants">
<tr class="{{combatant.isCurrentTarget ? '' : ''}}">
<!-- Hate -->
<td class="hate text-right">
<div class="hate {{combatant | hatecolor}}"><span style="position:absolute; left:12px;">{{combatant.isCurrentTarget ? "▶" : ""}}</span><span>{{combatant.HateRate}}%</span></div>
</td>
<!-- Name & HPP -->
<td class="text-left" colspan="2">
<div class="box">
<div class="content" style="width: 100%">
<span style="position:absolute; right:2px;">{{combatant | hppercent | round}}%</span>
<table class="blue" style="width:100%;">
<tr>
<td style="text-align: left;">
<span class="content" style="text-overflow: ellipsis;">{{combatant.Name}}</span>
</td>
<td style="min-width: 36px"></td>
</tr>
</table>
</div>
<div class="gauge {{combatant | hpcolor}}" style="width: {{combatant | hppercent}}%" />
</div>
</td>
</tr>
</template>
<!-- end of Vue Repeat Template -->
</tbody>
</table>
<!-- end of Combatant Table -->
</div>
<!-- end of inner -->
</div>
<!-- end of outer -->
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
<script src="https://ngld.github.io/OverlayPlugin/assets/shared/common.min.js"></script>
<script src="js/funcs.js"></script>
<script src="js/aggrolist.js"></script>
</body>
</html>