作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 javascript cropperjs裁剪用户上传的图像。在裁剪器显示中,裁剪框外部的图像不可见。下图所示的示例 -
我的裁剪机配置是 -
var cropper_opts = {
aspectRatio: 1/1,
viewMode: 0,
crop: function(e){}, //to show the crop box manually
minCanvasWidth: 0,
minCanvasHeight: 0,
minCropBoxWidth: 0,
minCropBoxHeight: 0,
minContainerWidth: 860, //decides the size of image
minContainerHeight: 355, //decides the size of image
autoCropArea: 1,
modal: true, // Show the black modal
guides: true, // Show the dashed lines for guiding
center: true, // Show the center indicator for guiding
highlight: true, // Show the white modal to highlight the crop box
background: true, // Show the grid background
}
请帮我解决这个问题。
最佳答案
发生这种情况可能是因为您在某种已经集成了cropper的html模板中使用cropper,并且canvas元素已经应用了一些其他样式。
检查这个类.cropper-canvas
就我而言,我发现我使用的模板将其不透明度设置为 0。
.cropper-canvas {
cursor: crosshair;
background-color: #fff;
opacity: 0; /* that's the problem */
filter: alpha(opacity=0);
}
关于javascript - CropperJS : Image outsite the crop box is not visible,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39900677/
我正在使用 javascript cropperjs裁剪用户上传的图像。在裁剪器显示中,裁剪框外部的图像不可见。下图所示的示例 - 我的裁剪机配置是 - var cropper_opts = {
我在java文件夹里看到了两个jre,一个在jdk里面,一个在jdk外面。你能告诉我拥有这两个 jre 的原因是什么吗? 最佳答案 我没有正确阅读您的答案并进行了一些搜索,这是一个似乎是 Oracle
我是一名优秀的程序员,十分优秀!