-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 2.88 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="description" content="SNE Mobile Simulator" />
<meta name="keywords" content="Mobile, Simulator, jQuery, jQueryMobile" />
<title>SNE Mobile Simulator</title>
<link rel="stylesheet" href="assets/css/jquery.mobile.min.css">
<script src="assets/js/jquery.js"></script>
<script src="assets/js/jquery.mobile.min.js"></script>
<script src="assets/js/simulator.js"></script>
<link rel="stylesheet" href="assets/css/simulator.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
</head>
<body>
<div data-role="page" id="demo-page" data-theme="d">
<div data-role="header" data-theme="b">
<a href="#left-panel" data-icon="arrow-r" data-iconpos="notext" data-shadow="false" data-iconshadow="false" class="ui-icon-nodisc">Options</a>
<h1>SNE Mobile Simulator</h1>
<a target="_blank" href="https://github.com/oyepez003/SNE-MobileSimulator" data-shadow="false" data-iconshadow="false" class="ui-icon-nodisc">Fork me on GitHub</a>
</div><!-- /header -->
<div data-role="content">
<div align="center">
<input placeholder="iFrame src" data-mini="true" name="txtIFrmSrc" id="txtIFrmSrc" value="" type="text">
<a href="#" id="btnIFrmSrc" data-role="button" data-icon="arrow-r" data-iconpos="right" data-inline="true">Change it</a>
<br/><br/>
<div id="simulator_aio" class="simulator galaxyS3-portrait">
<div class="simulator-screen">
<iframe id="simulatorPage" class="simulator-page" src="tests/pages/multipage-template.html" id="deviceFrame"></iframe>
</div>
</div>
</div>
</div><!-- /content -->
<div data-role="footer" data-theme="b">
<h1>By @oyepez003 - YepSua Team</h1>
</div><!-- /footer -->
<div data-role="panel" id="left-panel" data-theme="b">
<div data-role="collapsible" data-mini="true">
<h4>Options:</h4>
<select data-mini="true" id="cboSimulatorStyle" data-native-menu="false" data-icon="grid">
<option value="galaxyS3">Choose a Simulator Style:</option>
<optgroup label="Android">
<option value="galaxyS3">Galaxy S3</option>
</optgroup>
<optgroup label="Apple">
<option value="iphone4">iPhone</option>
<option value="iphone5">iPhone5</option>
<option value="ipad">iPad</option>
</optgroup>
<optgroup label="Windows">
<option value="win8Phone">Windows 8 Phone</option>
</optgroup>
</select>
<select id="cboOrientation" data-mini="true" data-native-menu="false">
<option value="portrait">Portrait</option>
<option value="landscape">Landscape</option>
</select>
</div>
</div><!-- /panel -->
</div><!-- /page -->
</body>
</html>