-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
52 lines (45 loc) · 2.28 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
<meta charset="utf-8">
<!-- iPad/iPhone specific css below, add after your main css >
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="ipad.css" type="text/css" />
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="iphone.css" type="text/css" />
-->
<!-- If your application is targeting iOS BEFORE 4.0 you MUST put json2.js from http://www.JSON.org/json2.js into your www directory and include it here -->
<script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
<link rel="stylesheet" href="jquery.mobile-1.1.0.min.css" />
<script src="js/jquery-1.6.4.min.js"></script>
<script src="js/main.js"></script>
<script src="js/jquery.mobile-1.1.0.min.js"></script>
<script src="js/jfeed.js"></script>
</head>
<body>
<div data-role="page" id="contact">
<div data-theme="a" data-role="header" data-position="fixed"> <h3> CONTACT </h3> </div>
<div data-role="content">
<button onclick="capturePhoto();">Capture Photo</button>
<br>
<button onclick="capturePhotoEdit();">Capture Editable Photo</button>
<br>
<button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button>
<br>
<button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button>
<br>
<img style="display:none;width:60px;height:60px;" id="smallImage" src="" /> <img style="display:none;" id="largeImage" src="" /> </div>
</div>
<div data-theme="a" data-role="footer" data-position="fixed" data-id="commonFooter">
<div data-role="navbar" data-iconpos="top">
<ul>
<li> <a href="index.html" data-theme="" data-icon="home" > HOME </a> </li>
<li> <a href="news.html" data-theme="" data-icon="check" > NEWS </a> </li>
<li> <a href="stores.html" data-theme="" data-icon="info"> STORES </a> </li>
<li> <a href="contact.html" data-theme="" data-icon="star" class="ui-btn-active ui-state-persist"> CONTACT </a> </li>
</ul>
</div>
</div>
</div>
</body>
</html>