-
Notifications
You must be signed in to change notification settings - Fork 4
/
album.html
95 lines (95 loc) · 3.03 KB
/
album.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./css/reset.css">
<link rel="stylesheet" type="text/css" href="./css/share.css">
<link rel="stylesheet" type="text/css" href="./css/album.css">
<link rel="stylesheet" type="text/css" href="./css/phone.css">
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript" src="./js/util.js"></script>
<script type="text/javascript" src="./js/album.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>wechat</title>
</head>
<body>
<div id="wrap">
<div id="statusBar">
<div id="whatTime"></div>
<div id="wireless"></div>
<div id="battery"></div>
</div>
<div id="main">
<div id="toolBar">
<img id="gobackBtn" src="./img/goback.jpg">
<h4>我的相册</h4>
<img id="messageBtn" class="topRightBtn" src="./img/message
.jpg">
</div>
<div id="myAlbum">
<div id="banner">
<img id="bannerImg" src="./img/banner.jpg" alt="相册横幅">
<div id="headBox">
<img src="./img/aniang.jpg" alt="头像">
<h5 class="person" id="userName">劝儒</h5>
</div>
</div>
<ul id="photos">
<li class="user" id="photo0">
<div class="date">
<h2 class="day">今天</h2>
</div>
<img class="photo zoomAble" src="./img/newPhoto.jpg" alt="拍照">
</li>
<li class="user" id="photo1">
<div class="date">
<h2 class="day">09<span class="month">5月</span></h2>
</div>
<img class="photo zoomAble" src="./img/zjz.jpg" alt="">
<p class="words">今天天气好晴朗~</p>
</li>
<li class="user" id="photo2">
<div class="date">
<h2 class="day">07<span class="month">5月</span></h2>
</div>
<img class="photo zoomAble" src="./img/zyz.jpg" alt="">
<p class="words">昨天天气好晴朗~</p>
</li>
<li class="user" id="photo3">
<div class="date">
<h2 class="day">06<span class="month">5月</span></h2>
</div>
<img class="photo zoomAble" src="./img/dcr.jpg" alt="">
<p class="words">天气好晴朗~</p>
</li>
<li class="user" id="photo4">
<div class="date">
<h2 class="day">07<span class="month">4月</span></h2>
</div>
<img class="photo zoomAble" src="./img/ajiu.jpg" alt="">
<p class="words">昨天天气好~</p>
</li>
<li class="user" id="photo5">
<div class="date">
<h2 class="day">09<span class="month">3月</span></h2>
</div>
<img class="photo zoomAble" src="./img/hjg.jpg" alt="">
<p class="words">今天天气好~</p>
</li>
<li class="user" id="photo6">
<div class="date">
<h2 class="day">27<span class="month">1月</span></h2>
</div>
<img class="photo zoomAble" src="./img/ashen.jpg" alt="">
<p class="words">天天好晴朗~</p>
</li>
<li class="user">
</li>
</ul>
</div>
</div>
<div id="shade">
</div>
</div>
</body>
</html>