-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 2.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>OGP Image Formatter</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.2/cropper.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<link rel="stylesheet" href="style.css">
<meta property="og:url" content="https://amaotone.github.io/ogp-image-formatter/" />
<meta property="og:title" content="OGP Image Formatter" />
<meta property="og:image" content="https://amaotone.github.io/ogp-image-formatter/logo.jpg" />
<meta property="og:description" content="Crop & Resize & Convert to JPG" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@SakuEji" />
</head>
<body>
<div class="container">
<section class="hero">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">
OGP Image Formatter
</h1>
</div>
</div>
</section>
<section class="section">
<div id="img-container">
<img id="preview" src="example.jpg">
</div>
</section>
<section class="section">
<div class="field is-grouped is-grouped-centered">
<div class="control">
<div class="file is-large">
<label class="file-label">
<input class="file-input" type="file" id="upload">
<span class="file-cta">
<span class="file-label">
Import
</span>
</span>
</label>
</div>
</div>
<div class="control">
<button id="download" class="button is-info is-large">Download</button>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>OGP Image Formatter</strong> by <a href="https://twitter.com/SakuEji">Amane Suzuki</a>.
GitHub repository is <a href="https://github.com/amaotone/ogp-image-formatter">here</a>.
</p>
</div>
</footer>
</div>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/cropperjs/1.5.2/cropper.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="main.js"></script>
</body>
</html>