-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ドラッグ&ドロップでファイルアップロード</title>
<link rel="stylesheet" href="dnd.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="./dnd.js"></script>
</head>
<body>
<h1>写真</h1>
<table border="0">
<tr>
<td><img src="" id="preview1" alt="preview1" width="320" /></td>
<td><img src="" id="preview2" alt="preview2" width="320" /></td>
<td><img src="" id="preview3" alt="preview3" width="320" /></td>
</tr>
<tr>
<td><input type="text" id="comment1" value="" style="width: 250px;"></td>
<td><input type="text" id="comment2" value="" style="width: 250px;"></td>
<td><input type="text" id="comment3" value="" style="width: 250px;"></td>
</tr>
</table>
<br />
<br />
<h1>画像ファイルのアップロード</h1>
<div id="dropzone" dropzone>
<span id="howto">ここへ画像ファイルをドロップ</span>
<img src="" id="preview" alt="preview" width="320" />
</div>
<br />
<label>コメント</label><input type="text" id="comment" placeholder="勉強会の様子" style="width: 250px;">
<br />
<button id="setImage">setImage</button>
</body>
</html>