-
Notifications
You must be signed in to change notification settings - Fork 1
/
tips.html
36 lines (35 loc) · 1.11 KB
/
tips.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
<!DOCTYPE html>
<html>
<head>
<meta charset="gbk" />
<title>提示框</title>
<link rel="stylesheet" href="http://style.china.alibaba.com/app/tools/css/elf/global/merge.css" />
<link rel="stylesheet" href="http://style.china.alibaba.com/app/tools/css/widget/tui-tips.css" />
</head>
<body style="margin:20px;">
<style type="text/css">
/*.tui-tips {
position:absolute;
}
.tui-tips .arrow-up {
position:absolute;
display:inline-block;
width:9px;
height:6px;
top:-5px;
left:12px;
background:url("http://img.china.alibaba.com/cms/upload/2013/105/556/655501_133354742.png") no-repeat;
}
.tui-tips .tips-content {
border:1px solid #f7c368;
padding:9px 12px;
background-color:#fffbd5;
color:#444;
}*/
</style>
<div class="tui-tips">
<span class="arrow-up"></span>
<div class="tips-content">填写需要提示的内容~</div>
</div>
</body>
</html>