admin管理员组文章数量:1344937
Need to stop crop once the user drags cursor out of the image while cropping.
My problem is once the user moves out of the image and es back the cropped corners are moved away from the cursor. which should not happen.
Below is the simple demo what I have created.
<link rel="stylesheet" href=".css">
<link rel="stylesheet" href=".css">
<div class="img-container">
<img src=".jpg" alt="" class="">
</div>
<script type="text/javascript" src=".js"></script>
<script type="text/javascript" src=".js"></script>
Need to stop crop once the user drags cursor out of the image while cropping.
My problem is once the user moves out of the image and es back the cropped corners are moved away from the cursor. which should not happen.
Below is the simple demo what I have created.
<link rel="stylesheet" href="https://fengyuanchen.github.io/cropper/css/cropper.css">
<link rel="stylesheet" href="https://fengyuanchen.github.io/cropper/css/main.css">
<div class="img-container">
<img src="https://fengyuanchen.github.io/cropper/images/picture.jpg" alt="" class="">
</div>
<script type="text/javascript" src="https://fengyuanchen.github.io/cropperjs/js/cropper.js"></script>
<script type="text/javascript" src="https://fengyuanchen.github.io/cropperjs/js/main.js"></script>
Share
Improve this question
edited May 2, 2018 at 13:14
CodeZingat
asked Aug 12, 2016 at 9:19
CodeZingatCodeZingat
2393 silver badges14 bronze badges
5
- your demo works as you want – Jaromanda X Commented Aug 12, 2016 at 9:22
- My problem is once the user moves out of the image and es back the cropped corners are moved away from the cursor. which should not happen. – CodeZingat Commented Aug 12, 2016 at 9:25
- Oh I see ... that's an awful lot of code to work through, I'll leave it to someone with time on their hands – Jaromanda X Commented Aug 12, 2016 at 9:26
- ya I know that...not sure if its possible or not. – CodeZingat Commented Aug 12, 2016 at 9:29
- it's possible, 100% doable guaranteed - the position of the mouse is a known - obviously there's some sort of relative movement going on when there shouldn't be – Jaromanda X Commented Aug 12, 2016 at 9:45
1 Answer
Reset to default 12You can achieve this by setting the viewMode to 1 (default = 0)
Example with the jQuery cropper plugin:
var $image = $("#PreviewImage");
$image.cropper({
viewMode: 1,
crop: function(event) {
// do something
}
});
本文标签: javascriptStop crop for cropper js outside the imageStack Overflow
版权声明:本文标题:javascript - Stop crop for cropper js outside the image - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752759a2532955.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论