-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathR.js
More file actions
34 lines (34 loc) · 1.09 KB
/
R.js
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
const R = {
string: {
center: "居中",
ratio: "等比",
top: "靠上",
bottom: "靠下",
left: "靠左",
right: "靠右",
top_left: "靠左上",
top_right: "靠右上",
bottom_left: "靠左下",
bottom_right: "靠右下",
ratio_left: "靠左、垂直等比",
ratio_right: "靠右、垂直等比",
ratio_top: "靠上、水平等比",
ratio_bottom: "靠下、水平等比",
},
drawable: {
center: "drawable/center.png",
ratio: "drawable/ratio.png",
top: "drawable/top.png",
bottom: "drawable/bottom.png",
left: "drawable/left.png",
right: "drawable/right.png",
top_left: "drawable/top_left.png",
top_right: "drawable/top_right.png",
bottom_left: "drawable/bottom_left.png",
bottom_right: "drawable/bottom_right.png",
ratio_left: "drawable/ratio_left.png",
ratio_right: "drawable/ratio_right.png",
ratio_top: "drawable/ratio_top.png",
ratio_bottom: "drawable/ratio_bottom.png",
}
}