$list = $('#fileList'),
// 浼樺寲retina, 鍦╮etina涓嬭繖涓€兼槸2
ratio = window.devicePixelRatio || 1,
// 缂╃暐鍥惧ぇ灏�
thumbnailWidth = 100 * ratio,
thumbnailHeight = 100 * ratio,
// Web Uploader瀹炰緥
uploader;
var uploader = WebUploader.create({
// swf文件路径
swf: 'http://www.songcheng.xyz:8813/webuploader/Uploader.swf',
// 文件接收服务端。
server: 'http://www.songcheng.xyz:8813/admin/Image/index',
// 选择文件的按钮。可选。
// 内部根据当前运行是创建,可能是input元素,也可能是flash.
pick: '#filePicker',
// 只允许选择图片文件。
accept: {
title: 'Images',
extensions: 'gif,jpg,jpeg,bmp,png',
mimeTypes: 'image/*'
},
// 不压缩image, 默认如果是jpeg,文件上传前会压缩一把再上传!
resize: false
});