0.9.1 • Published 8 years ago

jquery.core.image.upload v0.9.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

jquery.core.image.upload

jquery.core.upload a plugin for image upload Demo

how to use

Node

npm i jquery.core.image.upload --save-dev
<script src="./node_modules/jquery.core.image.upload/dist/jquery.core.image.upload.min.js"></script>

Git

git clone https://github.com/Vanthink-UED/jquery.core.image.upload.git

Basic Usage

<script src="./dist/jquery.core.image.upload.min.js"></script>

$(".js-btn-upload").coreImageUpload ({
    url: "./upload.php",
    inputOfFile: 'image',
    uploadedCallback: function (result) {
        alert(result);
    }
});

config Options

  • url your server url @string rg:./src/upload.php;required;

  • uploadedCallback: after finish your uploading your callback @function;required;

  • inputOfFile: upload file form name @string;required

  • extensions: limit the file type @array eg:[jpg,png];

  • onSubmit: when you uploading your file your function callback @function

  • isAjax: we support two upload:ajax And 'iframe'.@boolean,default:true

Send server crop arguments

If you crop a image , your crop will send a request to your server with some crop arguments;

  • toCropImgX: the distance of cropbox to the image left;
  • toCropImgY: the distance of cropbox to the image top
  • toCropImgW: the width of cropbox
  • toCropImgH: the height of cropbox
  • maxWidth: the maxium width of your target image
  • maxHeight: the maxium height of your target image
<script src="./dist/jquery-ui.min.js"></script>
// if you want ot support mobile touch
<script src="./dist/jquery-ui.touch-pounch.min.js"></script>
$(".js-btn-crop").coreImageUpload ({
    url: "./crop.php",
    inputOfFile: 'image',
    enableCrop: true,
    cropRatio: '1:1',
    uploadedCallback: function (result) {
        alert( 'Success!:' + result.data['toCropImgW'] + result.data['toCropImgH']);
    }
});

Also We concat a single file with full scripts in dist/jquery.core.image.upload.full.min.js

MIT LICENSE