-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
131 lines (124 loc) · 2.39 KB
/
index.css
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#at-plus-container {
position: absolute;
bottom: 100px;
left: 50%;
width: 300px;
height: 300px;
transform: translateX(-50%);
/* border: 1px solid red; */
}
#bottom-positioner {
position: absolute;
top: 50%;
left: 50%;
width: 50px;
height: 50px;
transform: translate(-50%, -50%);
/* background-color: red; */
}
#bottom-positioner:hover {
width: 100%;
height: 100%;
}
#bottom-positioner:hover > #button {
width: 100%;
height: 100%;
}
.apb{
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #eee;
text-align: center;
line-height: 50px;
color: #fff;
font-size: 1.4rem;
transition: transform 0.5s;
z-index: 2;
}
#bottom-positioner:hover > #button .apb {
background-color: green;
top: 40%;
left: 40%;
transform: scale(2);
cursor: pointer;
}
#control-ring-container {
position: absolute;
width: 100%;
height: 100%;
}
/* 设置按钮展开之后的样式 */
ul{
list-style: none;
position: absolute;
opacity: 1;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
/* transform: translate(20px,20px); */
/* transition:all 4s ease-in 0s; */
/* transform: scale(0);
transition: transform 2s; */
/* transition:all 4s 0s; */
}
/* #bottom-positioner:hover ul .button{
transform: scale(1);
opacity: 1;
} */
ul .button{
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
top: 50%;
left: 50%;
opacity: 0;
transform: translate(-50%, -50%);
background-color: #000;
cursor: pointer;
/* transform: translate(0,0); */
transition:all 1s 0s;
/* transform: scale(0);
transition: all 1s ease; */
}
#bottom-positioner:hover ul li:nth-child(1){
transform: translate(-110px, -80px);
opacity: 1;
}
#bottom-positioner:hover ul li:nth-child(2){
transform: translate(-120px, -10px);
opacity: 1;
}
#bottom-positioner:hover ul li:nth-child(3){
transform: translate(-75px, 45px);
opacity: 1;
}
#bottom-positioner:hover ul li:nth-child(4){
transform: translate(-10px, 60px);
opacity: 1;
}
#bottom-positioner:hover ul li:nth-child(5){
transform: translate(45px, 25px);
opacity: 1;
}
.mask:hover{
background-color: red;
}
.history:hover{
background-color: yellow;
}
.message:hover{
background-color: blue;
}
.setting:hover{
background-color: orange;
}
.sign:hover{
background-color: purple;
}