-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChat-box.html
More file actions
executable file
·142 lines (124 loc) · 2.79 KB
/
Chat-box.html
File metadata and controls
executable file
·142 lines (124 loc) · 2.79 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="<a href=" http:="" www.w3.org="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<style>
#box_bottomLeft {
left: 129px;
top: 99px;
}
#box_leftBottom {
left: 129px;
top: 239px;
}
#box_leftTop {
top: 99px;
left: 500px;
}
#box_rightBottom {
top: 239px;
left: 500px;
}
.popDiv {
border: 1px solid #78cdd3;
background: #fff;
padding: 20px 40px;
font-size: 24px;
color: #626366;
position: absolute;
z-index: 5;
min-height: 30px;
min-width: 150px;
text-align: center;
/* opacity: 0; */
}
.bottomLeft:before {
border-top: 32px solid #78cdd3;
border-right: 40px solid transparent;
content: "";
display: inline-block;
bottom: -32px;
position: absolute;
left: -1px;
}
.bottomLeft:after {
border-top: 30px solid #fff;
border-right: 38px solid transparent;
content: "";
display: inline-block;
bottom: -30px;
position: absolute;
left: -0px;
}
.leftBottom:before {
border-bottom: 32px solid #78cdd3;
border-left: 40px solid transparent;
content: "";
display: inline-block;
bottom: -1px;
position: absolute;
left: -41px;
}
.leftBottom:after {
border-bottom: 30px solid #fff;
border-left: 38px solid transparent;
content: "";
display: inline-block;
bottom: 0px;
position: absolute;
left: -38px;
}
.leftTop:before {
border-top: 32px solid #78cdd3;
border-left: 40px solid transparent;
content: "";
display: inline-block;
top: -1px;
position: absolute;
left: -41px;
}
.leftTop:after {
border-top: 30px solid #fff;
border-left: 38px solid transparent;
content: "";
display: inline-block;
top: 0px;
position: absolute;
left: -38px;
}
.rightBottom:before {
border-bottom: 32px solid #78cdd3;
border-right: 40px solid transparent;
content: "";
display: inline-block;
bottom: -1px;
position: absolute;
left: 230px;
}
.rightBottom:after {
border-bottom: 30px solid #fff;
border-right: 37px solid transparent;
content: "";
display: inline-block;
bottom: 0px;
position: absolute;
left: 230px;
}
</style>
<script>alert(window.navigator.userAgent);</script>
</head>
<body>
<div id="box_bottomLeft" class="popDiv" style="opacity: 1;">
<div class="bottomLeft"></div>
</div>
<div id="box_leftBottom" class="popDiv" style="opacity: 1;">
<div class="leftBottom"></div>
</div>
<div id="box_leftTop" class="popDiv" style="opacity: 1;">
<div class="leftTop"></div>
</div>
<div id="box_rightBottom" class="popDiv" style="opacity: 1;">
<div class="rightBottom"></div>
</div>
</body>
</html>