我对 fengyuanchen jQuery Cropper.js v3.0.0 有一点问题。我正在尝试覆盖默认预览代码以使其大小与原始图像的显示大小相同。
我目前遇到的问题是,一旦图像的高度超过了原始图像的显示尺寸,预览就会比原始图像大很多。我希望它保持在相同的高度。
默认行为显示小于原始图像的预览:
我想要的是使预览保持与原始图像相同的高度,并且不超过它:
这是我的代码:
<div class="col col-6">
<img id="image" src=picture.jpg>
</div>
<div class="col col-3">
<div class="preview"></div>
</div>
//css
.preview {
overflow: hidden;
width: 200px;
height: 200px;
}
//JS:
$(function() {
var $preview = $('.preview');
var cropper = $('#image').cropper({
ready: function (e) {
var $clone = $(this).clone().removeClass('cropper-hidden');
$clone.css({
display: 'block',
width: '100%',
minWidth: 0,
minHeight: 0,
maxWidth: 'none',
maxHeight: 'none'
});
$preview.css({
width: '100%',
overflow: 'hidden'//,
//maxHeight: $(this).cropper('getContainerData').height + 'px'
}).html($clone);
},
crop: function(e) {
var imageData = $(this).cropper('getImageData'),
previewAspectRatio = e.width / e.height,
previewWidth = $preview.width(),
previewHeight = previewWidth / previewAspectRatio,
imageScaledRatio = e.width / previewWidth;
//if (previewHeight > $(this).cropper('getContainerData').height) {
//???
//}
$preview.height(previewHeight).find('img').css({
width: imageData.naturalWidth / imageScaledRatio,
height: imageData.naturalHeight / imageScaledRatio,
marginLeft: -e.x / imageScaledRatio,
marginTop: -e.y / imageScaledRatio
});
}
});
});