-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto1.html
40 lines (36 loc) · 896 Bytes
/
photo1.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
<!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/jquery.mobile-1.0a4.1.js"></script>
<script src="/js/mobile/custom.js"></script>
<style type="text/css">
</style>
</head>
<body>
<div data-role="page" >
<header data-role="header">
<h4> www.airad.com </h4>
</header>
<div data-role="content" class="photoview">
<img src="/images/phone/iphone1.jpg" style="float:left" id="img"/>
</div>
<footer data-role="footer" class="ui-bottom">
by airAD.com
</footer>
</div>
<script>
$(document).bind('swiperight',function(){
nextImg();
});
</script>
</body>
</html>