文章目录[隐藏]
我们在会员注册时,要用到会员头像上传,但有时图片太大,很多时候我们需要提供图片裁剪功能,当然文章图片裁剪,缩略图裁剪,产品图片裁剪都是可以的,再加上上传功能就完美了,这里小编给大家推荐一个实现的方法,用途十分广泛,供你参考:文章底部给你提供了源码免费的下载
缩略图裁剪效果截图:
载入必要的JS、CSS文件
<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>
HTML部分
<form id="upload_form" enctype="multipart/form-data" method="post" action="upload.php" onsubmit="return checkForm()">
<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部分检查表单
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;
}
百度云盘源码下载:http://pan.baidu.com/s/1pLgtNon