FSound.less
2.64 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
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
.wev-fsound-audio {
padding: 10px 0;
display: block;
}
.wev-fsound-audio:after {
content: '';
clear: both;
display: block;
}
.wev-audio-container {
float: left;
position: relative;
width: 150px;
height: 32px;
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: -moz-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: -o-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
border: 1px solid rgba(0, 0, 0, 0.12);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
margin: 0 5px;
}
.wev-audio-container:before {
content: '';
position: absolute;
display: block;
width: 8px;
height: 8px;
border: 1px solid rgba(0, 0, 0, 0.12);
-moz-transform: rotate(45deg); /* Firefox */
-webkit-transform: rotate(45deg); /* Safari 和 Chrome */
-o-transform: rotate(45deg); /* Opera */
transform: rotate(45deg);
left: -5px;
top: 11px;
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: -moz-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: -o-linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
background-image: linear-gradient(-180deg, #f8f8f8 0%, #efefef 100%);
border-top: none;
border-right: none;
}
.wev-audio-status {
float: left;
margin-top: 8px;
margin-left: 15px;
width: 13px;
height: 15px;
background: url(/mobilemode/mobile/images/plugin/sound.png) no-repeat top left;
-webkit-background-size: 100%;
background-size: 100%;
}
.wev-audio-status.playing {
-webkit-animation: audio_playing 1s infinite;
-o-animation: audio_playing 1s infinite;
animation: audio_playing 1s infinite;
}
.wev-audio-status.error:after {
content: '!';
font-size: @font-size-sm;
color: #aaa;
margin-left: 16px;
vertical-align: top;
}
@-webkit-keyframes audio_playing {
0% {
background-position: 0 -15px;
}
30% {
background-position: 0 -15px;
}
30.1% {
background-position: 0 -30px;
}
61% {
background-position: 0 -30px;
}
61.1% {
background-position: 0 -45px;
}
100% {
background-position: 0 -45px;
}
}
.wev-audio-time {
float: left;
line-height: 32px;
color: #999;
font-size: 13 * @hd;
font-family: SFUIDisplay-Regular, Arial;
}
.wev-audio-tips {
padding-left: 10px;
line-height: 32px;
color: #999;
font-size: @font-size-sm;
font-family: SFUIDisplay-Regular, Arial;
}
.wev-audio-loading {
line-height: 32px;
width: 50px;
}
.wev-audio-clearshow {
bottom: 0;
top:auto;
height:54px;
display:block;
}
.wev-audio-divhidden {
display:none;
}