-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtally_book.html
More file actions
47 lines (44 loc) · 1.76 KB
/
tally_book.html
File metadata and controls
47 lines (44 loc) · 1.76 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
43
44
45
46
47
<!doctype html>
<html class="no-js frame" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1">
<meta http-equiv="pragma" content="no-cache" />
<title>Tally Book</title>
<meta name="description" content="">
<meta content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0" name="viewport" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta content="telephone=no" name="format-detection" />
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/daydayup.css">
<script src="js/jquery-1.11.2.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="scroll">
<div class="view">
<header>
<div class="title">记账本</div>
<div class="header-menu left">
</div>
</header>
</div>
</div>
</div>
<script src="js/isscroll.js"></script>
<script src="js/daydayup-0.1.0.js"></script>
<script>
var myScroll;
function loaded() {
myScroll = new iScroll('wrapper');
}
document.addEventListener('DOMContentLoaded', loaded, false);
window.onload = function() {
setTimeout(function(){ new iScroll(document.getElementById('scroller')) }, 100)
};
</script>
</body>
</html>