Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ax5ui/ax5ui-uploader
jQuery file uploader, HTML5(IE9+, FF, Chrome, Safari) - http://ax5.io/ax5ui-uploader/
https://github.com/ax5ui/ax5ui-uploader
ax5core ax5ui-uploader bootstrap bower javascript jquery npm uploade uploader
Last synced: about 10 hours ago
JSON representation
jQuery file uploader, HTML5(IE9+, FF, Chrome, Safari) - http://ax5.io/ax5ui-uploader/
- Host: GitHub
- URL: https://github.com/ax5ui/ax5ui-uploader
- Owner: ax5ui
- License: mit
- Created: 2016-09-21T14:37:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T03:52:15.000Z (almost 6 years ago)
- Last Synced: 2024-09-26T09:26:26.138Z (5 months ago)
- Topics: ax5core, ax5ui-uploader, bootstrap, bower, javascript, jquery, npm, uploade, uploader
- Language: JavaScript
- Homepage:
- Size: 746 KB
- Stars: 26
- Watchers: 4
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/ax5ui/ax5ui-uploader.svg?branch=master)](https://travis-ci.org/ax5ui/ax5ui-uploader)
[![npm version](https://badge.fury.io/js/ax5ui-uploader.svg)](https://badge.fury.io/js/ax5ui-uploader)
[![](https://img.shields.io/npm/dm/ax5ui-uploader.svg)](https://www.npmjs.com/package/ax5ui-uploader)# ax5ui-uploader
"uploader" allows users to upload single or multiple files with item selection.![ax5uploader](src/ax5uploader.gif)
> *Dependencies*
> * _[jQuery 1.X+](http://jquery.com/)_
> * _[ax5core](http://ax5.io/ax5core)_### Install with bower
```sh
bower install ax5ui-uploader
```
[bower](http://bower.io/#install-bower) is web front-end package manager.
When you install `bower`, it will be installed under the `bower_components` folder to resolve the plug-in dependencies.
(You can change the folder location. [.bowerrc](http://bower.io/docs/config/#bowerrc-specification) )It is recommended that you install by using `bower`.
If you've never used bower, please refer to [http://bower.io/#install-bower](http://bower.io/#install-bower).### Install with npm
If you do not use bower, it also can be installed by using npm as an alternative.
In case of npm, which is the package manager for the front end, you need to solve the problem of plug-in dependencies.```sh
npm install jquery
npm install ax5core
npm install ax5ui-uploader
```After downloading the install file of npm, you will need to copy it to the location where you want to use as a resource for the project.
If the copy process is inconvenient, it also can be done easily by using `gulp` or `grunt`.### Download code
- [ax5core Github releases](https://github.com/ax5ui/ax5core/releases)
- [ax5ui-uploader Github releases](https://github.com/ax5ui/ax5ui-uploader/releases)### Insert "ax5uploader" in HTML HEAD.
Folder location can be any for your project. However, please be sure to assign the right path in the project.
```html
```
**CDN urls**
This is a list of CDN urls for ax5ui-uploader. ax5ui offers the CDN services through rawgit.
```
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.css
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.js
https://cdn.rawgit.com/ax5ui/ax5ui-uploader/master/dist/ax5uploader.min.js
```### Basic Usage
```html
파일선택 (*/*)
``````js
$(function () {
var upload1 = new ax5.ui.uploader();
upload1.setConfig({
//debug: true,
target: $('[data-ax5uploader="upload1"]'),
form: {
action: "api/fileUpload.php",
fileName: "fileData"
},
multiple: true,
manualUpload: false,
direction: "left",
progressBox: true,
dropZone: $('[data-uploaded-box="upload1"]'),
uploadedBox: {
target: $('[data-uploaded-box="upload1"]'),
icon: {
"download": '',
"delete": ''
},
columnKeys: {
name: "name",
type: "type",
size: "fileSize",
uploadedName: "uploadedName",
uploadedPath: "uploadedPath",
downloadPath: "downloadPath",
previewPath: "previewPath",
thumbnail: "thumbnail"
},
lang: {
supportedHTML5_emptyListMsg: 'Drop files here or click to upload.',
emptyListMsg: 'Empty of List.'
},
onchange: function () {},
onclick: function () {
// console.log(this.cellType);
var fileIndex = this.fileIndex;
var file = this.uploadedFiles[fileIndex];
switch (this.cellType) {
case "delete":
dialog.confirm({
title: "AX5UI",
msg: "정말 삭제 하시겠습니까?"
}, function () {
if (this.key == "ok") {
$.ajax({
method: "post",
url: "api/fileDelete.php",
data: {
uploadedPath: file.uploadedPath,
saveName: file.saveName
},
success: function (res) {
upload1.removeFile(fileIndex);
}
});
}
});
break;case "download":
window.open(file.uploadedPath + "/" + file.saveName, "_blank", "width=600, height=600");
break;
}
}
},
onprogress: function () {},
onuploaded: function () {},
onuploadComplete: function () {}
});$.ajax({
url: "api/fileListLoad.php",
success: function (res) {
upload1.setUploadedFiles(res);
}
});
});
```- - -
### Preview
- [See Demonstration](http://ax5.io/ax5ui-uploader/demo/index.html)If you have any questions, please refer to the following [gitHub](https://github.com/ax5ui/ax5ui-kernel)
## Question
- https://jsdev.kr/c/axisj/ax5ui
- https://github.com/ax5ui/ax5ui-kernel/issues[![axisj-contributed](https://img.shields.io/badge/AXISJ.com-Contributed-green.svg)](https://github.com/axisj) ![](https://img.shields.io/badge/Seowoo-Mondo&Thomas-red.svg)