-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 778 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 778 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>jQuery Time Elapse</title>
<script src="http://code.jquery.com/jquery-1.2.1.min.js" type="text/javascript"></script>
<script src="jquery.timeelapse.min.js" type="text/javascript"></script>
</head>
<body>
<h2 id='h'></h2>
<script type="text/javascript">
<!--
$.timeelapse.settings.showMsecs = true;
$.timeelapse.settings.patterns = {
milliseconds : '%d毫秒',
seconds: '%d秒',
minutes: '%d分',
hours: '%d小时',
days: '%d天',
years: '%d年',
separator: ' '
};
var deltaMsecs = 100000000000 * Math.random();
var str = $.timeelapse(deltaMsecs);
$('#h').text(str);
//-->
</script>
</body>
</html>