koishi-plugin-tmp-bot 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/command/tmpPosition.js +0 -1
- package/lib/resource/position.html +25 -23
- package/package.json +1 -1
|
@@ -10,9 +10,12 @@
|
|
|
10
10
|
margin: 0;
|
|
11
11
|
padding: 0;
|
|
12
12
|
}
|
|
13
|
+
* {
|
|
14
|
+
font-family: "微软雅黑", serif;
|
|
15
|
+
}
|
|
13
16
|
#container {
|
|
14
|
-
width:
|
|
15
|
-
height:
|
|
17
|
+
width: 500px;
|
|
18
|
+
height: 320px;
|
|
16
19
|
position: relative;
|
|
17
20
|
}
|
|
18
21
|
.map {
|
|
@@ -22,7 +25,7 @@
|
|
|
22
25
|
}
|
|
23
26
|
.user-info-box {
|
|
24
27
|
width: 100%;
|
|
25
|
-
height:
|
|
28
|
+
height: 76px;
|
|
26
29
|
position: absolute;
|
|
27
30
|
bottom: 0;
|
|
28
31
|
z-index: 999;
|
|
@@ -31,20 +34,23 @@
|
|
|
31
34
|
display: flex;
|
|
32
35
|
flex-direction: row;
|
|
33
36
|
align-items: center;
|
|
34
|
-
padding: 0
|
|
37
|
+
padding: 0 14px;
|
|
35
38
|
box-sizing: border-box;
|
|
36
39
|
}
|
|
37
40
|
.avatar {
|
|
38
|
-
width:
|
|
39
|
-
height:
|
|
41
|
+
width: 56px;
|
|
42
|
+
height: 56px;
|
|
40
43
|
border-radius: 4px;
|
|
41
44
|
}
|
|
42
45
|
.user {
|
|
43
|
-
height:
|
|
44
|
-
width:
|
|
46
|
+
height: 56px;
|
|
47
|
+
width: 220px;
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
justify-content: center;
|
|
45
51
|
}
|
|
46
52
|
.user {
|
|
47
|
-
font-size:
|
|
53
|
+
font-size: 16px;
|
|
48
54
|
color: #eeeeee;
|
|
49
55
|
margin-left: 10px;
|
|
50
56
|
box-sizing: border-box;
|
|
@@ -52,6 +58,7 @@
|
|
|
52
58
|
.user .server-name-box {
|
|
53
59
|
display: flex;
|
|
54
60
|
align-items: center;
|
|
61
|
+
margin-top: 4px;
|
|
55
62
|
}
|
|
56
63
|
.user .username {
|
|
57
64
|
white-space: nowrap;
|
|
@@ -70,15 +77,18 @@
|
|
|
70
77
|
.location-box {
|
|
71
78
|
flex-grow: 1;
|
|
72
79
|
color: #eeeeee;
|
|
73
|
-
font-size:
|
|
74
|
-
height:
|
|
80
|
+
font-size: 16px;
|
|
81
|
+
height: 56px;
|
|
75
82
|
box-sizing: border-box;
|
|
76
83
|
border-right: 4px solid #54d354;
|
|
77
84
|
text-align: right;
|
|
78
85
|
padding-right: 6px;
|
|
86
|
+
display: flex;
|
|
87
|
+
flex-direction: column;
|
|
88
|
+
justify-content: center;
|
|
79
89
|
}
|
|
80
90
|
.location-box>* {
|
|
81
|
-
width:
|
|
91
|
+
width: 174px;
|
|
82
92
|
white-space: nowrap;
|
|
83
93
|
overflow: hidden;
|
|
84
94
|
text-overflow: ellipsis;
|
|
@@ -92,25 +102,17 @@
|
|
|
92
102
|
<img class="avatar" src="https://static.truckersmp.com/avatarsN/small/defaultavatar.png"/>
|
|
93
103
|
<div class="user">
|
|
94
104
|
<div class="username">...</div>
|
|
95
|
-
<div class="server-name-box">
|
|
105
|
+
<div class="server-name-box" style="margin-top: 4px">
|
|
96
106
|
<span class="server-name">...</span>游戏中
|
|
97
107
|
</div>
|
|
98
108
|
</div>
|
|
99
109
|
<div class="location-box">
|
|
100
110
|
<div class="country">...</div>
|
|
101
|
-
<div class="real-name">...</div>
|
|
111
|
+
<div class="real-name" style="margin-top: 4px">...</div>
|
|
102
112
|
</div>
|
|
103
113
|
</div>
|
|
104
114
|
</div>
|
|
105
115
|
<script>
|
|
106
|
-
// a: https://static.truckersmp.com/avatarsN/defaultavatar.png
|
|
107
|
-
// sa: https://static.truckersmp.com/avatarsN/small/defaultavatar.png
|
|
108
|
-
// name: Damien12345
|
|
109
|
-
// x: -13426
|
|
110
|
-
// y: -5998
|
|
111
|
-
// serverName: Simulation 1
|
|
112
|
-
// country: Germany
|
|
113
|
-
// realName: Duisburg
|
|
114
116
|
let multipliers = {
|
|
115
117
|
x: 71292,
|
|
116
118
|
y: 60412
|
|
@@ -132,7 +134,7 @@
|
|
|
132
134
|
|
|
133
135
|
// 定义地图
|
|
134
136
|
let map = L.map('map', {
|
|
135
|
-
attributionControl: false,
|
|
137
|
+
attributionControl: false,
|
|
136
138
|
crs: L.CRS.Simple,
|
|
137
139
|
zoomControl: false
|
|
138
140
|
});
|