-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
172 lines (160 loc) · 6.92 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<html>
<meta charset="utf-8">
<meta name="referrer" content="no-referrer">
<head>
<title>PDF2Gyazo - PDFから画像,Gyazoに変換!</title>
<meta name="keywords" content="PDF変換,Gyazo,Webサービス">
<meta name="description" content="PDF2Gyazoは、PDFから画像,Gyazoに変換するWebアプリケーションです。">
<meta property="og:title" content="PDF2Gyazo - PDFから画像,Gyazoに変換!" />
<meta property="og:type" content="website" />
<meta property="og:description" content="PDF2Gyazoは、PDFから画像,Gyazoに変換するWebアプリケーションです。" />
<meta property="og:url" content="https://pdf2gyazo.azurewebsites.net/" />
<meta property="og:site_name" content="PDF2Gyazo - PDFから画像,Gyazoに変換!" />
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./build/main.js"></script>
<script src="./build/0.js"></script>
<script src="./build/pdf.worker.js"></script>
<!-- <script src="./build/1.js"></script>
<script src="./build/2.js"></script> -->
<script>!function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https'; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = p + '://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js, fjs); } }(document, 'script', 'twitter-wjs');</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62998505-10"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-62998505-11');
</script>
<style>
body {
width: 100%;
height: 100%;
position: relative;
}
#dropTarget {
height: 800px;
width: 100%;
position: relative;
background-color: rgba(255, 255, 255, 0.6);
}
.dropText {
height: 40%;
width: 100%;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>
<nav class="light-blue lighten-1" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="./" class="brand-logo">PDF2Gyazo</a>
</div>
</nav>
</head>
<body class="light-blue lighten-3">
<div class="center container">
<h2 class="grey-text text-lighten-5">PDFから画像,Gyazoに変換</h2>
<div class="imgTable" style="width:100%;">
<table id="imageTable" style="width:100%;">
</table>
</div>
<div class="row" id="lengthParameter">
<div class="input-field col s5">
<select id="rowLength">
<option value="1" selected>列/横/row 1</option>
<option value="2">列/横/row 2</option>
<option value="3">列/横/row 3</option>
</select>
<label>row Length</label>
</div>
<div class="input-field col s2">
<h5>
x
</h5>
</div>
<div class="input-field col s5">
<select id="lineLength">
<option value="1" selected>行/縦/line 1</option>
<option value="2">行/縦/line 2</option>
<option value="3">行/縦/line 3</option>
</select>
<label>line Length</label>
</div>
</div>
<div id="dropTarget">
<div class="dropText">
<div id="loading" style="visibility:hidden;">
<div class="preloader-wrapper big active">
<div class="spinner-layer spinner-blue-only">
<div class="circle-clipper left">
<div class="circle"></div>
</div>
<div class="gap-patch">
<div class="circle"></div>
</div>
<div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
</div>
<div id="description">
<p class="flow-text">ここにPDFを</p>
<p class="flow-text">ドラッグ&ドロップ</p>
<p class="flow-text">又はファイルを選択</p>
<div class="file-field input-field" style="width: 50%;left:25%;">
<div class="btn">
<span>File</span>
<input id="files" type="file" accept=".pdf">
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text">
</div>
</div>
</div>
</div>
</div>
<div class="flow-text blue-grey-text text-darken-4">
<h3>
特徴
</h3>
<p>jsで処理するため、PDFファイルを送信しません。</p>
<p>ブラウザのGyazoアカウントに保存されます。</p>
<p>右クリック/長押しで高画質でjpeg保存できます。</p>
</div>
</div>
<footer class="page-footer light-blue lighten-1">
<div class="container">
<div class="row">
<div class="col l6 s12">
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Contact</h5>
<p class="white-text">matatsuna(at)gmail.com</p>
<p class="white-text">@matatsuna</p>
<h1></h1>
<p>
<a class="twitter-share-button" href="https://twitter.com/share" data-size="large"
data-text="PDFからGyazoに変換!" data-url="https://pdf2gyazo.azurewebsites.net/">
Tweet
</a>
</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Yasutsuna Matayoshi
<br> Made by
<a class="white-text text-lighten-4" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
</body>
</html>