-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.75 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
<html>
<head>
<title>Imgur JS Uploader</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://libraries.weblabor.mx/w3.css" />
</head>
<body>
<div class="w3-container w3-teal">
<h1>Imgur JS Uploader</h1>
</div>
<ul class="w3-navbar w3-black">
<li><a href="index.html">Home</a></li>
<li><a href="simple.html">Simple example</a></li>
<li><a href="advanced.html">Advanced example</a></li>
</ul>
<div class="w3-container">
<h3>Add an image HTML input easily and upload it to a free service like imgur</h3>
<p>Use it in forms, only add the input and it will store the url of the image</p>
<h4>Requirements</h4>
<p>Add the following code the the footer and see examples.</p>
<code data-type="codeeditor" data-color="black" data-lang="html"><script type="text/javascript" src="https://weblabormx.github.io/Imgur-JS-Uploader/imgur-js-uploader.js"></script><!-- normal one -->
<script type="text/javascript" src="https://weblabormx.github.io/Imgur-JS-Uploader/imgur-js-uploader.min.js"></script><!-- minify one --></code>
</div>
<footer class="w3-padding-16 w3-teal w3-center w3-margin-top">
Library maintened by <a href="http://www.weblabor.mx">Weblabor</a> in Tuxtla Gutierrez, Chiapas, México
</footer>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="https://weblabormx.github.io/Easy-JS-Library/library/script.js"></script>
<script type="text/javascript" src="imgur-js-uploader.min.js"></script>
<script type="text/javascript">
$('.image').imgurUploader();
</script>
</body>
</html>