-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile_usp.html
94 lines (84 loc) · 3.37 KB
/
mobile_usp.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
93
94
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<title>JukeBox</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<meta name="description" content="memegen" />
</head>
<body class="<%= page_classes %>">
<div class="m-meme">
<a href="banner_pmu.html">Banner PMU</a> |
<a href="mobile_usp.html">Mobile USP</a> |
<a href="multi_brand_hpw.html">Multi Brand HPW</a> |
<a href="brand_story_card.html">BRAND STORY CARD</a>
<h1>Mobile USP Generator</h1>
<form class="m-editor" id="meme-editor-view">
<p>
<a href="#" id="load-old-banner">Load Previously Saved Creative</a>
</p>
<div class="dropzone" id="dropzone">Drop Image Here</div>
<h2><label for="image-scale">Resize image</label></h2>
<input id="image-scale" type="range" max="4" min=".01" step=".01" value="1">
<h2><label for="headline">Title</label></h2>
<textarea id="headline" name="headline" maxlength="20"></textarea>
<div class="form-group">
<div class="col-md-3">
<h2><label for="callout">Text Color</label></h2>
<input type="text" id="textColorRGB" class="colorpicker-default form-control" name="textColorRGB"
value="#8fff00"/>
</div>
</div>
<h2><label for="uspText1">USP Text 1</label></h2>
<input id="uspText1" name="uspText1" type="text" value=""/>
<h2><label for="uspText2">USP Text 2</label></h2>
<input id="uspText2" name="uspText2" type="text" value=""/>
<h2><label for="uspText3">USP Text 3</label></h2>
<input id="uspText3" name="uspText3" type="text" value=""/>
<select class="text-align" id="text-align">
<option value="" disabled>Select alignment</option>
</select>
<select class="font-size" id="font-size">
<option value="" disabled>Select a font size</option>
</select>
<select class="font-family" id="font-family">
<option value="" disabled>Select a font</option>
</select>
<div class="checkbox-group text-shadow">
<input id="text-shadow" name="text-shadow" type="checkbox">
<label for="text-shadow">Text Shadow</label>
</div>
<select class="watermark" id="watermark">
<option value="" disabled>Select a watermark</option>
</select>
<div class="m-editor__overlay" id="overlay">
<h2>Overlay Color</h2>
<ul class="checkbox-group">
<li><label><input type="radio" name="overlay" value=""> None</label></li>
</ul>
</div>
</form>
<div class="m-canvas" id="meme-canvas-view">
<div class="m-canvas__canvas" id="meme-canvas">
<noscript>Sorry, this tool requires a canvas-enabled browser. Try Google Chrome.</noscript>
</div>
<p class="m-canvas__download">
<a href="#" download="share.png" id="meme-download">Download Image</a>
</p>
</div>
</div>
<script src="js/application.js"></script>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/underscore.js"></script>
<script src="js/vendor/backbone.js"></script>
<script src="js/main.js"></script>
<script src="js/models/meme.js"></script>
<script src="js/views/meme-canvas.js"></script>
<script src="js/views/meme-editor.js"></script>
<script src="js/helpers/font-monitor.js"></script>
<script src="js/mobile_usp.js"></script>
</body>
</html>