-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
118 lines (117 loc) · 3.18 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>cloudsystem</title>
<link rel="stylesheet" type="text/css" href="/static/webuploader/webuploader.css">
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
<!--<link rel="stylesheet" type="text/css" href="/static/layui/css/layui.css" media="all">-->
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="/static/js/jquery.js"></script>
<script type="text/javascript" src="/static/webuploader/webuploader.js"></script>
<script type="text/javascript" src="/static/js/jquery.qqFace.js"></script>
<script type="text/javascript" src="https://cdn.bootcss.com/jquery-browser/0.1.0/jquery.browser.js"></script>
<!--<script type="text/javascript" src="/static/layui/layui.js"></script>-->
<!-- built files will be auto injected -->
</body>
<!--<script type="text/javascript" src="/static/jquery/jquery-3.3.1.js"></script>-->
<!--<script type="text/javascript" src="/static/webuploader/webuploader.js"></script>-->
<style>
html,body{
height: 100%;
margin: 0;
padding: 0;
}
.dialogByyou{
clear: both;
}
.dialogByyou div {
display: inline-block;
float: left; /*margin: 5px 5px;*/
}
#talk-img {
width: 40px;
height: 40px;
text-align: center;
/* margin: 10px;*/
background: aqua;
margin: 5px;
}
.talkbubble {
word-wrap: break-word;
-ms-word-wrap: break-word;
-moz-word-wrap:break-word;
margin-top: 5px;
margin-left: 10px;
max-width: 250px;
background: aquamarine;
position: relative;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
line-height: 30px;
padding: 5px 10px;
font-size: 14px;
}
.sanjiaoLeft {
content: '';
position: relative;
top: 15px;
left: 10px;
width: 0;
height: 0;
margin-left: -8px;
border-top: 9px solid transparent;
border-right: 12px solid aquamarine;
border-bottom: 9px solid transparent;
}
.dialogByme{
clear: both;
}
.dialogByme div {
display: inline-block;
float: right;
/*margin: 5px 5px;*/
}
.talkbubbleMe {
word-wrap: break-word;
-ms-word-wrap: break-word;
-moz-word-wrap:break-word;
margin-top: 5px;
margin-right: 10px;
max-width: 250px;
background: aquamarine;
position: relative;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
line-height: 30px;
padding: 5px 10px;
font-size: 14px;
}
.sanjiao{
content: '';
position: relative;
/*left: 100%;*/
top: 15px;
right: 10px;
width: 0;
height: 0;
margin-right: -8px;
border-top: 9px solid transparent;
border-left: 12px solid aquamarine;
border-bottom: 9px solid transparent;
}
#talk-myimg{
width: 40px;
height: 40px;
}
#facebox{
border: 1px solid black;
background-color: white;
}
</style>
</html>