移动端图片裁剪上传—jQuery.cropper.js
jQuery.cropper.js是一款使用简单且功能强大的图片剪裁jQuery插件。该图片剪裁插件支持图片放大缩小,支持图片旋转,支持触摸屏设备,支持canvas,并且支持跨浏览器使用。 一、移动端获取本地相册兼容 安卓: <input type="file" accept="image/*" capture="camera" > ios:<input type="file" accept="image/*"> <input type="file" accept="image/*" capture="camera" class="js_upFile"> var agent = navigator.userAgent.toLowerCase(); if (agent.indexOf('iphone') != -1 || agent.indexOf('ipad') != -1 ){ $('.js_upFile').removeAttr("capture" ); } 二、判断图片格式 function check_Image_Format(value) { var regexp = new RegExp("(.JPEG|.jpeg|.JPG|.jpg|.PNG|.png|.svg|.gif|.bmp)$",'g' ); return regexp.test(value); } 三