PHP+jQuery+html5实现图片选取裁剪上传(兼容手机上传) 评分:

在网上找到了图片上传插件jquery.min.js,但没有上传功能,自己花了10分钟给加上去了哈,有bug留言,一般当天改完上传。
PHP+jQuery+html5实现图片选取裁剪上传(兼容手机上传)

HTML

首先我们放置一个上传按钮及相关预览信息等。

<form id="upload_form" enctype="multipart/form-data" method="post" action="upload.php" onsubmit="return checkForm()">  
   <!-- hidden crop params -->  
   <input type="hidden" id="x1" name="x1" autocomplete="off" />  
   <input type="hidden" id="y1" name="y1" autocomplete="off" />  
   <input type="hidden" id="x2" name="x2" autocomplete="off" />  
   <input type="hidden" id="y2" name="y2" autocomplete="off" />  
   <input type="file" name="image_file" id="image_file" onchange="fileSelectHandler()" />  
   <div class="error"> 
    注意:上传前,先截图 
   </div>  
   <div class="step2">  
    <img id="preview" />  
    <div class="info">  
     <ul>  
      <li><label>文件大小</label> <input type="text" id="filesize" name="filesize" class="input" autocomplete="off" /></li>  
      <li><label>类型</label> <input type="text" id="filetype" name="filetype" class="input" autocomplete="off" /></li>  
      <li><label>图像尺寸</label> <input type="text" id="filedim" name="filedim" class="input" autocomplete="off" /></li>  
      <li><label>宽度</label> <input type="text" id="w" name="w" class="input" autocomplete="off" /></li>  
      <li><label>高度</label> <input type="text" id="h" name="h" class="input" autocomplete="off" /></li>  
     </ul>  
    </div>  
    <input type="submit" value="上传" class="btn" />  
   </div>  
</form>

接着我们引用jQuery库和Jcrop插件。

<link href="css/jquery.Jcrop.min.css" rel="stylesheet" type="text/css" /> 
<script type="text/javascript" src="jquery.js"></script>  
<script src="js/jquery.Jcrop.min.js"></script>

jQuery

接着我们看下表单的检查:

function checkForm() { 
    if (parseInt($('#w').val())) //若是没有截屏 
        return true; 
    $('.error').html('请先选择图片,并且截图').show(); 
    return false; 
}

上传文件条件设置:

var rFilter = /^(image\/jpeg|image\/png|image\/jpg)$/iif (!rFilter.test(oFile.type)) { 
    $('.error').html('请选择jpg、jpeg或png格式的图片').show(); 
    return} 
 
// check for file size 
if (oFile.size > 1000 * 1024{ 
    $('.error').html('请上传小于1M的图片').show(); 
    return}

这是一个单图片上传,并且兼容手机图片上传。


2020-02-06 上传

免责声明:本站所有素材资源均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。

thinkphp3.2加好友聊天源码
域名url转发
php+Ajax远程加载避免重复提交
Thinkphp+Ajax登录注册
php+Ajax无刷新分页
redis session共享类,拿着直接用(负载均衡)
thinkphp5开发restful API接口自动生成文档
PHP整蛊二维码生成器
上传头像带裁剪预览功能Flash版带在线拍照
PHP检测上传图片是否有木马
QQ钱包扫码支付源码
Thinkphp整合webupload多图片上传
PHP大转盘抽奖
Thinkphp5整合省市区镇村5级联动
Thinkphp5整合phpmailer发送邮件DEMO和源码
PHP仿淘宝商品多规格属性
PHP在线制作文字表情吸引粉丝源码
Thinkphp朋友圈吸引粉丝图片生成器
PHP识别支付宝二维码推广链接
输入名字生成新年祝福源码
PHP生成微信小程序二维码三种方法
PHP看图答题测试
thinkphp5 workerman在线聊天室
PHP弹出滑块拖动验证码
多图上传带简易php后台代码
PHP仿12306图片验证码
Thinkphp说说留言无限回复
php+mysql+dropload上拉刷新+下拉加载
php列表页筛选功能
OSS同步工具
PHP扫到什么评论什么朋友圈吸引粉丝裂变源码
thinkphp生成带二维码的活动海报
PHP各大音乐平台API接口
PHP仿京东幸运大转盘抽奖
jQuery+php+ajax带进度条无刷新上传文件代码
PHP+jQuery+html5实现图片选取裁剪上传(兼容手机上传)
PHP+Jcrop+artDialog头像上传
PHP+Ajax实现在线聊天长轮询
创新网络

这个人很懒,什么都没留下。

热门资源
QQ在线咨询