-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcouch.html
executable file
·131 lines (111 loc) · 3.42 KB
/
couch.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>我是一头猪</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="stylesheet" href="css/couch.css?t=20120927" type="text/css" media="screen" />
<style type="text/css">
body{padding: 0; margin: 0 }
.T_wrap{
width:320px;
margin: 0 auto;
font-size: 12px;
font-family: Tahoma;
font-family: Helvetica Neue;
}
.none{
display: none!important;
}
.place_holder{
height:100%;
font-size: 32px;
line-height: 400px;
text-align: center;
outline:none;
}
.top_time{
position: absolute;
left:50%;
margin-left: -30px;
width:60px;
text-align:center;
white-space: nowrap;
padding-top: 2px;
}
</style>
</head>
<body>
<div class="T_wrap">
<!-- your codes here start -->
<div class="c_page">
<div class="c_top_bar">
<div class="c_left">
</div>
<div class="c_mid">
<div class="c_label top_time">
am 12:20
</div>
</div>
<div class="c_right">
</div>
</div><!-- c_top_bar -->
<div class="c_scene_wrap">
<div class="c_scene_inner">
<div class="c_view home_view">
<div class="c_title">
<div class="c_mid">
<h2>Home</h2>
</div>
<div class="c_left">
<a href="#" class="c_btn">查看主页</a>
</div>
<div class="c_right">
<a href="#" class="c_btn">新建</a>
</div>
</div>
<div class="place_holder">home_view</div>
</div>
<div class="c_view detail_view c_view_hide">
<div class="c_title">
<div class="c_mid">
<h2>This is Detail View</h2>
</div>
<div class="c_left">
<a href="#" class="c_btn">返回</a>
</div>
<div class="c_right">
</div>
</div>
<div class="place_holder">detail_view</div>
</div>
<div class="c_view add_view c_view_hide">
<div class="c_title">
<div class="c_left">
<a href="#" class="c_btn">取消</a>
</div>
<div class="c_mid">
<h2>title with list</h2>
</div>
<div class="c_right">
<a href="#" class="c_btn">发送微博</a>
</div>
</div>
<div class="place_holder">add_view</div>
</div>
</div><!-- inner for animate holder -->
</div><!-- c_nav_view -->
<div class="c_bottom_bar">
</div>
</div><!-- c_page -->
<!-- your codes here end -->
</div>
<!-- T_wrap -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/couch.js?t=20120927"></script>
<script type="text/javascript">
</script>
</body>
</html>