-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcuplayer.css
41 lines (34 loc) · 847 Bytes
/
cuplayer.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
@charset 'utf-8';
body {overflow-x:hidden; font-family: '微软雅黑';}
.icon-pause,
.icon-play { display: inline-block; width: 32px; height: 32px; background: url(../images/icon-music.png); background-size: 32px 32px; }
.rotate {
-webkit-animation: rotating 1.2s linear infinite;
-moz-animation: rotating 1.2s linear infinite;
-o-animation: rotating 1.2s linear infinite;
animation: rotating 1.2s linear infinite;
}
@-webkit-keyframes rotating {
from {
-webkit-transform: rotate(0deg)
}
to {
-webkit-transform: rotate(360deg)
}
}
@keyframes rotating {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg)
}
}
@-moz-keyframes rotating {
from {
-moz-transform: rotate(0deg)
}
to {
-moz-transform: rotate(360deg)
}
}