fuchengshen
2022-07-09 3a25c05b5ab837714f30469cdcb1e2a77d8d7f6c
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
/** 自定义导航球样式 */
.mars3d-compass-custom {
  position: absolute;
  top: 10px;
  right: 10px;
  user-select: none;
  width: 120px;
  height: 120px;
}
/** 外部的圆环区域 */
.mars3d-compass-custom .mars3d-compass-outer {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
  width: 120px;
  background: rgb(62 65 65 / 40%);
  border-radius: 50%;
}
/** 中间的的圆环区域 */
.mars3d-compass-custom .mars3d-compass-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: 120px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: contain;
}
/** 鼠标按下中间往四周拖拽时显示的半弧状态层 */
.mars3d-compass-custom .mars3d-compass-rotation-arc {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}