-
Notifications
You must be signed in to change notification settings - Fork 0
/
dropzone.html
37 lines (37 loc) · 1.19 KB
/
dropzone.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="html5" />
<meta name="description" content="dropzone.js 演示" />
<title>演示:Dropzone.js实现文件拖拽上传</title>
<link rel="stylesheet" href="dropzone.css">
</head>
<body>
<div class="container">
<div class="row" >
<div class="col-md-12">
<h2 class="top_title">Dropzone.js实现文件拖拽上传</h2>
<div class="row">
<div class="col-md-6 col-xs-12 col-md-offset-3">
<!-- dropzone 区域-->
<div id="file" class="dropzone"></div>
</div>
</div>
</div>
</div>
</div>
<script src="dropzone.js"></script>
<script type="text/javascript">
var file = new Dropzone("div#file",{
url: "upload.php",
paramName: "file",
maxFilesize: 0.5,//MB
maxFiles: 5,
acceptedFiles: ".jpg,.png,.gif"
});
</script>
</body>
</html>