forked from tony903/Static-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtooltips.html
More file actions
42 lines (36 loc) · 1.06 KB
/
tooltips.html
File metadata and controls
42 lines (36 loc) · 1.06 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="renderer" content="webkit"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/>
<link rel="stylesheet" type="text/css" href="styles/tooltip.css">
<link rel="stylesheet" type="text/css" href="styles/iconfont/iconfont.css">
<link rel="stylesheet" type="text/css" href="styles/temporary.css">
<title>提示</title>
</head>
<body>
<!-- 示例 -->
<div class="tips-example">
<div class="text">
<i class="iconfont icon-wenhao"></i>
</div>
<!-- 提示 -->
<div class="t-tooltip">
<div class="t-tooltip-content">
<p>用户反映套餐开通时毫不知情,现在要求能够退还6月份套餐费用,并恢复原有38元套餐。</p>
</div>
<div class="t-tooltip-arrow">
<span></span>
<i></i>
</div>
</div>
<!-- 可关闭提示 -->
<div class="t-tooltip-dismissible">
<i class="iconfont icon-tanhao"></i>
<p>积分夜间客服系统已经更新至V5.3版</p>
<a href="#nogo" title="关闭">×</a>
</div>
</div>
</body>
</html>