1

我曾使用 Jquery Croppie在弹出模型中要求裁剪或缩放图像,我曾使用 fancybox 在弹出窗口中显示图像,现在我想在弹出模式中制作裁剪图像或缩放图像,但它不再工作了。我已经完成了弹出模式,

<a data-fancybox="gallery" href="{{ asset('public/img/noimage.png') }}" id="fancybox_anchor">
   <div id="profile_pic_div" style="background-image: url('{{ asset('public/img/noimage.png') }}')"></div>
</a>

弹出模型完美地显示了图像,但现在我想使用我试过的croppie让它裁剪、缩放、调整大小,

$( '.fancybox-image-wrap img' ).croppie({
        enableExif: true,
        viewport: {
            width: 250,
            height: 250,
        },
        type: 'circle',
        boundary: {
            width: 300,
            height: 300
        }
});

当 Popup 打开 Image 父类时,fancybox-image-wrap这就是我将其作为选择器的原因。在正常模式下它的工作,但我怎么能在弹出模型中做到这一点。请帮忙。我完全陷入了困境。

谢谢你。

4

1 回答 1

2

这是使用回调初始化croppie并获得结果的更完整示例:

var myCroopie;

$('[data-fancybox="images"]').fancybox({
  touch: false, 
  clickContent: false,
  animationEffect: false,
  afterLoad : function(instance, current) {
    myCroopie = current.$image.croppie({
    });
  },
  beforeClose : function() {
    myCroopie.croppie('result', 'html').then(function(html) {
      // html is div (overflow hidden)
      // with img positioned inside.
      $("#rez").html(html);
    });
  }
});

演示 - https://codepen.io/anon/pen/bvjeLZ?editors=1010

于 2018-04-04T06:27:24.873 回答