-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.html
32 lines (27 loc) · 858 Bytes
/
demo.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
<!doctype html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1">
<!-- 360 使用Google Chrome Frame -->
<meta name="renderer" content="webkit">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 清除默认样式 -->
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- 简单demo -->
<div class="number-normal">
<div class="data"></div>
</div>
<!-- 深度自定义demo -->
<div class="number-diy">
<div class="data" data-number="21468159"></div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.rollNumber.js"></script>
<script src="js/main.js"></script>
</body>
</html>