-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.html
53 lines (48 loc) · 1.32 KB
/
photo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>airad</title>
<link rel="stylesheet"
href="/js/mobile/jquery.mobile-1.0a4.1.css" />
<link rel="stylesheet"
href="/js/mobile/custom.css" />
<script src="/js/mobile/jquery-1.4.3.min.js"></script>
<script src="/js/mobile/custom.js"></script>
<script
src="/js/mobile/jquery.mobile-1.0a4.1.js"></script>
<style type="text/css">
</style>
</head>
<body>
<div data-role="page" >
<header data-role="header">
<h5 id="photoOrder">1/6</h5>
</header>
<div data-role="content" class="photoview">
<div id="show">
<img src="/images/phone/iphone.jpg" id="1"/>
</div>
<div style="display:none;">
<img src="/images/phone/iphone.jpg" id="1"/>
<img src="/images/phone/iphone1.jpg" id="2"/>
<img src="/images/phone/pro_04.jpg" id="3"/>
<img src="/images/phone/join_01.jpg" id="4"/>
<img src="/images/phone/pro_01.jpg" id="5"/>
</div>
<div>
<div class="prev" id="prev">Prev</div>
<a class="next" id="next">Next</div>
</div>
</div>
<footer data-role="footer" class="ui-bottom">
by airAD.com
</footer>
</div>
<script>
$(document).ready(function(){
});
</script>
</body>
</html>