我正在使用Jcrop,虽然它工作正常,预览图像看起来像是错误的坐标。我怀疑我的javascript功能是罪魁祸首,但我已经挣扎了好几个小时已经没有解决方案了。有帮助吗?这是我的代码的小提琴:
HTML:
<div class="content">
<a class="lol" href="#este">Upload image!</a>
</div>
<div id="este" class="mfp-hide popup zoom-anim-dialog">
<h4>Upload image</h4>
<form id="form1">
<input type='file' id="imgInp" />
<img id="blah" class="crop" src="#" alt="your image" />
<input type="hidden" id="x" name="x" />
<input type="hidden" id="y" name="y" />
<input type="hidden" id="w" name="w" />
<input type="hidden" id="h" name="h" />
</form>
<div style="width:100px;height:100px;overflow:hidden; margin-top: 20px;">
<img id="preview" />
</div>
</div>
JAVASCRIPT:
$(document).ready(function() {
$('.lol').magnificPopup({
type: 'inline',
fixedContentPos: false,
fixedBgPos: true,
overflowY: 'auto',
closeBtnInside: true,
preloader: false,
midClick: true,
removalDelay: 300,
mainClass: 'my-mfp-slide-bottom'
});
});
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah').attr('src', e.target.result);
$('#preview').attr('src', e.target.result);
$('.crop').Jcrop({
onSelect: updateCoords,
onChange: showPreview,
aspectRatio: 1,
bgOpacity: .4,
setSelect: [ 100, 100, 50, 50 ]
});
}
reader.readAsDataURL(input.files[0]);
}
}
$("#imgInp").change(function(){
console.log(this);
readURL(this);
});
function updateCoords(c)
{
console.log(c);
$('#x').val(c.x);
$('#y').val(c.y);
$('#w').val(c.w);
$('#h').val(c.h);
};
function showPreview(coords)
{
var rx = 100 / coords.w;
var ry = 100 / coords.h;
$('#preview').css({
width: Math.round(rx * 500) + 'px',
height: Math.round(ry * 500) + 'px',
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
marginTop: '-' + Math.round(ry * coords.y) + 'px'
});
}
非常感谢!
答案 0 :(得分:0)
之前我遇到过与jCrop类似的问题。这里有几个道具可能会解决您的问题:trueSize和boxWidth,boxHeight