mcuStyle.css
1.3 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
@charset "utf-8";
.audioAndVideBox{
position: absolute;
left: 2px;
bottom: 2px;
z-index: 2;
}
/*已经推流时按钮图标的左边距离*/
.openVideo{
left: 36px;
}
/*没有推流时按钮图标的左边距离*/
.unOpenVideo{
left: 2px;
}
/*音视频开启禁用和开启的按钮图标属性*/
.audioAndVideMuted{
/*position: absolute;*/
/*bottom: 2px;*/
/*z-index: 2;*/
float: left;
margin: 2px;
width: 20px;
height: 20px;
cursor: pointer;
background-size: 100%;
background-repeat: no-repeat;
}
/*禁音频按钮*/
.microphoneOff {
background-image: url(../../assets/img/microphoneOff_22.png);
}
.microphoneOn {
background-image: url(../../assets/img/microphoneOn_22.png);
}
/*禁视频按钮*/
.cameraOff {
background-image: url(../../assets/img/cameraOff_22.png);
}
.cameraOn {
background-image: url(../../assets/img/cameraOn_22.png);
}
/*只开启音频时的界面图标*/
.audioPlayIcoBox{
display: none;
position: absolute;
pointer-events: none;
width: 100%;
height: 100%;
background-position: center;
z-index: 1;
/*background-size: 100%;*/
background-repeat: no-repeat;
background-color: #232323;
background-image: url(../../assets/img/audioPlayIco.gif);
}