-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbj.css
More file actions
100 lines (89 loc) · 1.75 KB
/
bj.css
File metadata and controls
100 lines (89 loc) · 1.75 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
/******test.php*******/
body{
height: 100%;
width:100%;}
.prontbar{
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2f4b77;
padding: 10px 12px;
}
.all_webcam{
height: 90%;
width: 100%;
}
.test_all{
height: 100%;
width: 100%;
}
.webcam{
position: relative;
display: flex;
margin:0px;
width: 100%;
height:640px;
}
.bjtest{
position: absolute;
margin:0px;
width: 80%;
max-width: 100%;
height: 100%;
max-height: 100%;
}
#myVideo{
width: 100%;
max-width: 100%;
max-height: 100%;
}
.chat_iframe{
position: relative;
width: 19%;
margin-left:80%;
}
.chat_iframe iframe{
position: absolute;
width: 100%;
height: 100%;
}
/*****************/
#bjVideo{
width:100%;
height:100%;
}
video{
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg);
/* Safari and Chrome */
}
/*video::-webkit-media-controls {
display: none;
}*/
video::-webkit-media-controls-volume-slider {
display:none;
}
video::-webkit-media-controls-play-button {
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg);
}
/* 전체화면 버튼 */
video::-webkit-media-controls-fullscreen-button {
display: none;
}
/* 음소거 버튼 */
video::-webkit-media-controls-mute-button {
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg);
}
video::-webkit-media-controls-time-remaining-display {
display: none;
}
video::-webkit-media-controls-current-time-display{
display: none;
}
video::-webkit-media-controls-timeline {
display: none;
}
/*****body야 너는 왜 여기있니 위에 있던 body 삭제함********/
/****test.php종료***********/