-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (127 loc) · 7.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<title>MemeMaker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chilanka&family=Comic+Neue&family=Dancing+Script:wght@400;500;600;700&family=Kalam:wght@400;700&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Pacifico:wght@400;500&family=Anton&family=Lobster+Two:wght@400;700&family=Oleo+Script:wght@400;700&family=Leckerli+One&display=swap" rel="stylesheet">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
</body>
</html>
<body>
<div class="tabs__container">
<div class="canvas_container">
<!-- <canvas id="animation-canvas"></canvas> -->
</div>
<a class="btn btn--save" id="save-btn">Save</a>
<div class="form_container">
<form class="form form--content" id="content">
<div class="form__block form__block--file">
<label for="file-input" class="form__file__label btn btn--img">Choose Image
<input type="file" id="file-input" class="form__file" accept="image/*" size="20">
</label>
</div>
<div class="form__grp form__grp--text">
<div class="form__block form__block--text">
<label for="top-text-input" >Text 1:</label>
<input id="top-text-input" class="form__text" type="text">
</div>
<div class="form__block form__block--radio" data-for="top-text"><span>Alignment</span>
<label for="top-align-left"> <input type="radio" id="top-align-left" class="alignment left" value="start" name="alignment-top"></label>
<label for="top-align-center"><input type="radio" id="top-align-center" class="alignment center" value="center" name="alignment-top" checked></label>
<label for="top-align-right"><input type="radio" id="top-align-right" class="alignment right" value="end" name="alignment-top"></label>
</div>
<div class="form__block form__block--range">
<label for="offset-top-input">Offset</label>
<input type="range" id="offset-top-input" class="form__range" name="offset-top-input" min="15" max="450" value="50" data-sizing="px">
</div>
</div>
<div class="form__grp form__grp--text">
<div class="form__block form__block--text">
<label for="bottom-text-input">Text 2:</label>
<input id="bottom-text-input" class="form__text" type="text">
</div>
<div class="form__block form__block--radio" data-for="bottom-text"><span>Alignment</span>
<label for="bottom-align-left"><input type="radio" id="bottom-align-left" class="alignment left" value="start" name="alignment-bottom"></label>
<label for="bottom-align-center"><input type="radio" id="bottom-align-center" class="alignment center" value="center" name="alignment-bottom" checked></label>
<label for="bottom-align-right"><input type="radio" id="bottom-align-right" class="alignment right" value="end" name="alignment-bottom"></label>
</div>
<div class="form__block form__block--range">
<label for="offset-bottom-input">Offset</label>
<input type="range" id="offset-bottom-input" class="form__range" name="offset-bottom-input" min="5" max="450" value="25" data-sizing="px">
</div>
</div>
</form>
<form class="form form--text-attributes curtain" id="text-attributes">
<div class="form__block form__block--font">
<div class="form__font-family">
<!-- <p>Font</p>-->
<div class="radio_block"><input type="radio" name="font-family" id="Anton" value="Anton" checked><label for="Anton">Anton</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Pacifico" value="Pacifico"><label for="Pacifico">Pacifico</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Chilanka" value="Chilanka"><label for="Chilanka">Chilanka</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Kalam" value="Kalam"><label for="Kalam">Kalam</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Comic Neue" value="Comic Neue"><label for="Comic Neue">Comic</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Dancing-Script" value="Dancing Script"><label for="Dancing-Script">Dance</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Oleo-Script" value="Oleo Script"><label for="Oleo-Script">Oleo</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Calibri" value="Calibri"><label for="Calibri">Calibri</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Impact" value="Impact"><label for="Impact">Impact</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Roboto" value="Roboto"><label for="Roboto">Roboto</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Times" value="Times"><label for="Times">Times</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Arial" value="Arial"><label for="Arial">Arial</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Montserrat" value="Montserrat"><label for="Montserrat">Montserrat</label></div>
<div class="radio_block"><input type="radio" name="font-family" id="Poppins" value="Poppins"><label for="Poppins">Poppins</label></div>
</div>
</div>
<div class="form__grp form__grp--range">
<div class="form__block">
<label for="shadow-input">Shadow</label>
<input type="range" id="shadow-input" class="form__range" name="shadow-input" min="0" max="200" value="0">
</div>
<div class="form__block">
<label for="opacity-input">Opacity</label>
<input type="range" id="opacity-input" class="form__range" name="opacity-input" min="0" max="255" value="255">
</div>
<div class="form__block">
<label for="font-size-input">Font Size</label>
<input type="range" id="font-size-input" class="form__range" name="font-size-input" min="8" max="80" value="26">
</div>
<div class="form__block">
<label for="stroke-width-input">Outline</label>
<input type="range" id="stroke-width-input" class="form__range" name="stroke-width-input" min="0" max="150" value="30">
</div>
<div class="form__block ">
<label for="line-height-input">Line Height</label>
<input type="range" id="line-height-input" class="form__range" name="line-height-input" min="10" max="90" value="40">
</div>
<div class="form__grp--color">
<div class="form__block">
<label for="fill-input">Fill </label>
<input id="fill-input" class="form__color form__color--fill" type="color" name="fill-input">
</div>
<div class="form__block">
<label for="stroke-input">Stroke</label>
<input id="stroke-input" class="form__color form__color--stroke" type="color" name="stroke-input">
</div>
</div>
</div>
</form>
</div>
<form action="" id="add-ons" style="background: #efefef; padding: 20px 10px; height: auto" class="form curtain">
<p style="font-size: 2rem; color: #100c0896; margin: 0 auto">
Selective and Filters <span style="font-family: 'Kalam'; display: block">Coming soon...</span>
</p>
</form>
</div>
<section class="switches">
<button class="btn btn--switch btn--switch--active" id="content-btn" data-target="content">Content</button>
<button class="btn btn--switch" id="text-btn" data-target="text-attributes">Text</button>
<button class="btn btn--switch" id="add_on-btn" data-target="add-ons">Add Ons</button>
</section>
<script src = "app.js"></script>
</body>
</html>