最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

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

来源:http://www.erdangjiade.com/ 沐浴春风 2015-04-23 23:53浏览(3223)

在网上找到了图片上传插件jquery.min.js,但没有上传功能,自己花了10分钟给加上去了哈,有bug留言,一般当天改完上传。

0、请不要问“在不在”之类的问题,有问题直接问!1、学生或暂时没有工作的童鞋,整站资源免费下载!2、¥9.9充值终身VIP会员,加我微信,826096331 拉你进VIP群学习!3、程序员加油,技术改变世界。在线 充值

分类:表单代码 > 图片上传 难易:中级
查看演示

加我微信,拉你进VIP群学习:

下载资源 下载积分: 50 积分

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)$/i;
if (!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;
}

这是一个单图片上传,并且兼容手机图片上传。相关多图片上传:PHP+jQuery+Ajax多图片上传flash头像上传插件

标签: 上传html5裁剪
声明:本文为原创文章,如需转载,请注明来源erdangjiade.com并保留原文链接:https://www.erdangjiade.com/js/71.html
评论5
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

  • 头像 4楼
    04-14 21:10
    周术富
    历害了!
  • 头像 3楼
    11-03 09:36
    RH。。。
    日常攒积分中。。啊啊
  • 头像 板凳
    08-27 08:19
    ngu137
    厉害了,值得收藏!!!。。。
  • 头像 椅子
    06-19 14:52
    zhiai
    挺好的
  • 头像 沙发
    05-03 10:41
    377960738
    还行吧,和我做的差不多
1 2