forked from WiFiUncle/ossUploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OSS uploader</title>
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/oosUploadStyle.css" />
</head>
<body>
<div id="wrapper">
<div id="container">
<div id="uploader">
<div class="queueList">
<div id="dndArea" class="placeholder">
<div class="" id="uploaderPick">
<a id="chooseFile" href="javascript:void(0);" class="text">点击选择文件</a>
</div>
</div>
</div>
</div>
<div id="statusBar" class="statusBar">
<div class="total-progress">
<div id="totalProgressBar"
class="total-progress-bar"
role="progressbar"
aria-valuenow="0"
aria-valuemin="0"
aria-valuemax="100"
style="min-width: 2em;">
0%
</div>
</div>
<div class="start-uploader" style="padding-right:20px; float: right;">
<a id="startUpload" href="javascript:void(0);" class="text">开始上传</a>
</div>
<div class="start-uploader" style="padding:0 20px; float: right;margin: 0 10px">
<a id="addBtn" href="javascript:void(0);" class="text">继续添加</a>
</div>
</div>
<div class="" style="clear: both;">
</div>
</div>
</div>
<div class="container bs-docs-container">
<form id="form">
<input id="js-file" type="file" style="display:none;" multiple="multiple"/>
</form>
</div>
<script src="./js/jquery-2.2.4.min.js"></script>
<!-- <script src="http://gosspublic.alicdn.com/aliyun-oss-sdk-4.4.4.min.js"></script> -->
<script src="./js/aliyun-oss-sdk.js"></script>
<script src="./js/index.js"></script>
</body>
</html>