213 lines
9.6 KiB
HTML
Executable file
213 lines
9.6 KiB
HTML
Executable file
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>jQuery File Upload Demo</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<!-- Bootstrap styles -->
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
||
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
|
||
crossorigin="anonymous"
|
||
/>
|
||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||
<link rel="stylesheet" href="./lib/jQuery-File-Upload-master/css/jquery.fileupload.css" />
|
||
<link rel="stylesheet" href="./lib/jQuery-File-Upload-master/css/jquery.fileupload-ui.css" />
|
||
<!-- CSS adjustments for browsers with JavaScript disabled -->
|
||
<!--
|
||
<noscript
|
||
><link rel="stylesheet" href="./lib/jQuery-File-Upload-master/css/jquery.fileupload-noscript.css"
|
||
/></noscript>
|
||
<noscript
|
||
><link rel="stylesheet" href="./lib/jQuery-File-Upload-master/css/jquery.fileupload-ui-noscript.css"
|
||
/></noscript>
|
||
-->
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<noscript><h3>You must have JavaScript enabled in order to use this site. Please enable JavaScript and then reload this page in order to continue. </h3> </noscript>
|
||
<!-- The file upload form used as target for the file upload widget -->
|
||
<form
|
||
id="fileupload"
|
||
action=""
|
||
method="POST"
|
||
enctype="multipart/form-data"
|
||
>
|
||
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
||
<div class="row fileupload-buttonbar">
|
||
<div class="col-lg-7">
|
||
<!-- The fileinput-button span is used to style the file input field as button -->
|
||
<span class="btn btn-success fileinput-button">
|
||
<i class="glyphicon glyphicon-plus"></i>
|
||
<span>Add files...</span>
|
||
<input type="file" name="files[]" multiple />
|
||
</span>
|
||
<button type="submit" class="btn btn-primary start">
|
||
<i class="glyphicon glyphicon-upload"></i>
|
||
<span>Start upload</span>
|
||
</button>
|
||
<button type="reset" class="btn btn-warning cancel">
|
||
<i class="glyphicon glyphicon-ban-circle"></i>
|
||
<span>Cancel upload</span>
|
||
</button>
|
||
<!-- The global file processing state -->
|
||
<span class="fileupload-process"></span>
|
||
</div>
|
||
<!-- The global progress state -->
|
||
<div class="col-lg-5 fileupload-progress fade">
|
||
<!-- The global progress bar -->
|
||
<div
|
||
class="progress progress-striped active"
|
||
role="progressbar"
|
||
aria-valuemin="0"
|
||
aria-valuemax="100"
|
||
>
|
||
<div
|
||
class="progress-bar progress-bar-success"
|
||
style="width: 0%;"
|
||
></div>
|
||
</div>
|
||
<!-- The extended global progress state -->
|
||
<div class="progress-extended"> </div>
|
||
</div>
|
||
</div>
|
||
<!-- The table listing the files available for upload/download -->
|
||
<table role="presentation" class="table table-striped">
|
||
<tbody class="files"></tbody>
|
||
</table>
|
||
</form>
|
||
</div>
|
||
<!--
|
||
<div class="slides"></div>
|
||
<h3 class="title"></h3>
|
||
<a class="prev">‹</a>
|
||
<a class="next">›</a>
|
||
<a class="close">×</a>
|
||
<a class="play-pause"></a>
|
||
<ol class="indicator"></ol>
|
||
-->
|
||
</div>
|
||
|
||
<!-- The template to display files available for upload -->
|
||
<script id="template-upload" type="text/x-tmpl">
|
||
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
||
<tr class="template-upload fade">
|
||
<td>
|
||
<span class="preview"></span>
|
||
</td>
|
||
<td>
|
||
{% if (window.innerWidth > 480 || !o.options.loadImageFileTypes.test(file.type)) { %}
|
||
<p class="name">{%=file.name%}</p>
|
||
{% } %}
|
||
<strong class="error text-danger"></strong>
|
||
</td>
|
||
<td>
|
||
<p class="size">Processing...</p>
|
||
<div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div>
|
||
</td>
|
||
<td>
|
||
{% if (!o.options.autoUpload && o.options.edit && o.options.loadImageFileTypes.test(file.type)) { %}
|
||
<button class="btn btn-success edit" data-index="{%=i%}" disabled>
|
||
<i class="glyphicon glyphicon-edit"></i>
|
||
<span>Edit</span>
|
||
</button>
|
||
{% } %}
|
||
{% if (!i && !o.options.autoUpload) { %}
|
||
<button style="display: none" class="btn btn-primary start" disabled>
|
||
<i class="glyphicon glyphicon-upload"></i>
|
||
<span>Start</span>
|
||
</button>
|
||
{% } %}
|
||
{% if (!i) { %}
|
||
<button class="btn btn-warning cancel">
|
||
<i class="glyphicon glyphicon-ban-circle"></i>
|
||
<span>Cancel</span>
|
||
</button>
|
||
{% } %}
|
||
</td>
|
||
</tr>
|
||
{% } %}
|
||
</script>
|
||
<!-- The template to display files available for download -->
|
||
<script id="template-download" type="text/x-tmpl">
|
||
{% for (var i=0, file; file=o.files[i]; i++) { %}
|
||
<tr class="template-download fade">
|
||
<td>
|
||
<span class="preview">
|
||
{% if (file.thumbnailUrl) { %}
|
||
<a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" data-gallery><img src="{%=file.thumbnailUrl%}"></a>
|
||
{% } %}
|
||
</span>
|
||
</td>
|
||
<td>
|
||
{% if (window.innerWidth > 480 || !file.thumbnailUrl) { %}
|
||
<p class="name">
|
||
{% if (file.url) { %}
|
||
<a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
|
||
{% } else { %}
|
||
<span>{%=file.name%}</span>
|
||
{% } %}
|
||
</p>
|
||
{% } %}
|
||
{% if (file.error) { %}
|
||
<div><span class="label label-danger">Error</span> {%=file.error%}</div>
|
||
{% } %}
|
||
</td>
|
||
<td>
|
||
<span class="size">{%=o.formatFileSize(file.size)%}</span>
|
||
</td>
|
||
<td>
|
||
<button class="btn btn-warning cancel">
|
||
<i class="glyphicon glyphicon-ban-circle"></i>
|
||
<span>Cancel</span>
|
||
</button>
|
||
</td>
|
||
</tr>
|
||
{% } %}
|
||
</script>
|
||
<script
|
||
src="./lib/jquery-3.1.0.min.js"
|
||
crossorigin="anonymous"
|
||
></script>
|
||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/vendor/jquery.ui.widget.js"></script>
|
||
<!-- The Templates plugin is included to render the upload/download listings -->
|
||
<!--
|
||
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||
-->
|
||
<script src="./lib/blueimp-tmpl.min.js"></script>
|
||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||
<!--
|
||
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||
-->
|
||
<script src="./lib/blueimp-load-image.all.min.js"></script>
|
||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||
<!--
|
||
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||
-->
|
||
<script src="./lib/blueimp-canvas-to-blob.min.js"></script>
|
||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.iframe-transport.js"></script>
|
||
<!-- The basic File Upload plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload.js"></script>
|
||
<!-- The File Upload processing plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-process.js"></script>
|
||
<!-- The File Upload image preview & resize plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-image.js"></script>
|
||
<!-- The File Upload audio preview plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-audio.js"></script>
|
||
<!-- The File Upload video preview plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-video.js"></script>
|
||
<!-- The File Upload validation plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-validate.js"></script>
|
||
<!-- The File Upload user interface plugin -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/jquery.fileupload-ui.js"></script>
|
||
<!-- The main application script -->
|
||
<script src="./lib/jQuery-File-Upload-master/js/f2l.js"></script>
|
||
<!-- The XDomainRequest Transport is included for cross-domain file deletion for IE 8 and IE 9 -->
|
||
<!--[if (gte IE 8)&(lt IE 10)]>
|
||
<script src="js/cors/jquery.xdr-transport.js"></script>
|
||
<![endif]-->
|
||
</body>
|
||
</html>
|