-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreator.html
92 lines (76 loc) · 2.52 KB
/
creator.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
<!DOCTYPE html>
<html>
<head>
<title>Desi Meme Generator</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/Dark_meme.css" />
<link rel="stylesheet" href="css/jquery_mobile_icons.css" />
<link rel="stylesheet" href="css/jquery_mobile_structure.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery_mobile.js"></script>
<style>
#container{
width:100%;
overflow:hidden;
position: relative;
}
#myCanvas{
width:100%;
position: absolute;
}
#myCanvas2{
width:100%;
position: absolute;
}
</style>
</head>
<body>
<div id="creator" data-role="page">
<div data-role="header">
<a href="index.html" data-role="button" data-icon="arrow-l" class="ui-btn-left" rel="external">Back</a>
<h1>Page Title</h1>
<a id="createbtn" href="#created" data-icon="check" class="ui-btn-right" >Create</a>
</div><!-- /header -->
<div data-role="content" >
<div id="container">
<canvas id="myCanvas">Your Phone is Not Compatible With the APP.</canvas>
<canvas id="myCanvas2">Your Phone is Not Compatible With the APP.</canvas>
</div>
<div>
<label for="toptext">Top Text:</label>
<input type="text" name="name" id="toptext" placeholder="Top Text" value="" data-mini="true" />
<label for="bottomtext">Bottom Text:</label>
<input type="text" name="name" id="bottomtext" placeholder="Bottom Text" value="" data-mini="true" />
</div>
<!-- <p></p>
<img src="_reso/_images/meme_0.jpg"> -->
</div><!-- /content -->
<div data-role="footer" data-position="fixed" >
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
<div data-role="page" id="created">
<div data-role="header">
<a href="index.html" data-role="button" data-icon="arrow-l" class="ui-btn-left" rel="external">Back</a>
<!-- <a href="creator.html" data-role="button" data-icon="arrow-l" class="ui-btn-left" >Back</a> -->
<h1>Have Fun!!!</h1>
</div><!-- /header -->
<div data-role="content" >
<div id="imgHolder"></div>
<div class="ui-grid-a">
<div class="ui-block-a">
<a id="download" data-role="button" data-icon="arrow-d">Download</a>
</div>
<div class="ui-block-b">
<a id="share" data-role="button" data-icon="arrow-d">Share this image</a>
</div>
</div>
</div>
<div data-role="footer" data-position="fixed" >
<h4>Page Footer</h4>
</div><!-- /footer -->
</div>
<script type="text/javascript" src="js/creator.js"></script>
</body>
</html>