我一直在尝试使用文件阅读器和croppie来允许用户在上传之前在本地编辑他们的图像(缩放/旋转/裁剪),但似乎无法让它正常工作。由于模态,我怀疑这是一个 DOM 问题,但我一生都无法弄清楚如何使它工作!
FileReader () stuff
//
//
//create elements for image, edit and delete buttons, then appending to parent div
//
//
//place the new image and button into the new div
newdiv.appendChild(newimage);
newdiv.appendChild(newedit);
newdiv.appendChild(newdelete);
//place the new div into the results div
output.appendChild(newdiv);
//add event listeners to dynamically created buttons
newdelete.addEventListener('click', delImage, false);
newedit.addEventListener('click', showModal, false);
.
.
.
function showModal(){
var edit_id = this.getAttribute("dataset-editid");
var image_id = document.getElementById('img-'+edit_id);
var thisImage = image_id.src;
$('#'+edit_id).click(function(){
$("#cropImagePop").modal();
});
console.log(edit_id);
console.log('image source: ' + image_id);
var themodal = document.getElementById('cropImagePop');
var theimage = document.getElementById('cropimage');
var instance = new Croppie(theimage, {
viewport: { width: 300, height: 300 },
boundary: { width: 900, height: 600 },
showZoomer: true,
enableResize: true,
url: thisImage
});
}
当我单击任何给定图片的动态“编辑”按钮时,模式会打开,但照片真的很大(不在模式内),并且没有可裁剪的边界框。
这是一个小提琴:https ://jsfiddle.net/noz2eb3y/
另外-我绝不与Croppie结婚-如果有人有一个很棒的(工作!)javascript库,他们知道哪个可以缩放/旋转/裁剪图像-我全神贯注!