-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple.html
61 lines (57 loc) · 2.44 KB
/
simple.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
<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"> <h2>Simple examples</h2>
<h4 class="w3-teal w3-tag">When creating</h4>
<div class="w3-light-grey w3-padding-16 w3-container w3-border">
<form method="get">
<input id="image" class="image" type="text" />
<input type="submit" />
</form>
</div>
<h6>HTML</h6>
<code data-type="codeeditor" data-color="black" data-lang="html"><form method="get">
<input id="image" class="image" type="text" />
<input type="submit" />
</form></code>
<h6>Javascript</h6>
<code data-type="codeeditor" data-color="black" data-lang="javascript">$('.image').imgurUploader();</code>
<h4 class="w3-teal w3-tag w3-margin-top">When loading the input</h4>
<div class="w3-light-grey w3-padding-16 w3-container w3-border">
<form method="get">
<input id="image" class="image" type="text" value="https://i.imgur.com/v2XEjln.jpg" />
<input type="submit" />
</form>
</div>
<h6>HTML</h6>
<code data-type="codeeditor" data-color="black" data-lang="html"><form method="get">
<input id="image" class="image" type="text" value="http://i.imgur.com/v2XEjln.jpg" />
<input type="submit" />
</form></code>
<h6>Javascript</h6>
<code data-type="codeeditor" data-color="black" data-lang="javascript">$('.image').imgurUploader();</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>