-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
50 lines (49 loc) · 1.86 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
<html>
<head>
<title>Meme generator</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<style type="text/css">
#main {
width: 600px;
margin-left: auto;
margin-right: auto;
}
.caption {
width: 100%;
}
table td {
padding-right: 10px;
}
textarea {
text-align: center;
font-size: 22px;
height: 3em;
}
</style>
</head>
<body>
<div id="main">
<div id="header">
<h2>Meme Generator</h2>
<br>
</div>
<div style="font-size: 20px">Upload an image from your computer:</div>
<input type="file" id="image"><br>
<textarea class="caption" id="text1" cols="60" rows="3" placeholder="Top text"></textarea><br>
<canvas id="canvas" style="width: 600px"></canvas>
<textarea class="caption" id="text2" cols="60" rows="3" placeholder="Bottom text"></textarea><br><br>
<table>
<tr><td>Font size:</td><td><input type="range" id="sliderSize" value="50" min="10" max="72"></td></tr>
<tr><td>Image size:</td><td><input type="range" id="sliderImage" value="600" min="240" max="600"></td></tr>
</table>
<br>
<button id="upload" class="btn btn-primary btn-lg">Upload!</button>
<div id="uploaded" style="color: gray">Link will appear here</div>
<br><br><br><br>
<img id="placeholder_image" src="gg-greg.png" style="display: none">
<a href="https://github.com/skopjehacklab/meme-generator"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>