我正在使用jCrop预览演示来做我自己的事情。但是我遇到了一个问题。如果在使用setSelect:加载图像时创建默认选择,那么我会将选择映射到大图像上,但是它不会出现在预览中。加载jCrop时,我找不到api处理程序来调用updatePreview函数。有人知道jCrop加载时如何调用此函数吗?

jQuery(function($){

      // Create variables (in this scope) to hold the API and image size
      var jcrop_api, boundx, boundy;

      $('#target').Jcrop({
        onChange: updatePreview,
        onSelect: updatePreview,
        setSelect: [ 0, 0, selectWidth, selectHeight ],
        aspectRatio: 1
      },function(){
        // Use the API to get the real image size
        var bounds = this.getBounds();
        boundx = bounds[0];
        boundy = bounds[1];
        // Store the API in the jcrop_api variable
        jcrop_api = this;
      });

      function updatePreview(c)
      {
        if (parseInt(c.w) > 0)
        {
          var rx = 100 / c.w;
          var ry = 100 / c.h;

          $('#preview').css({
            width: Math.round(rx * boundx) + 'px',
            height: Math.round(ry * boundy) + 'px',
            marginLeft: '-' + Math.round(rx * c.x) + 'px',
            marginTop: '-' + Math.round(ry * c.y) + 'px'
          });
        }
      };

    });

最佳答案

我试图设置默认值,并且默认值在预览框中得到预览。

jQuery(window).load(function(){

            jQuery('#cropbox').Jcrop({
                onChange: showPreview,
                onSelect: showPreview,
                setSelect: [ 100, 0, 100, 100 ],
                aspectRatio: 1
            });

        });

这就是我想要的方式。您的脚本可能还有其他错误。但是您不必调用任何特殊操作即可显示预览。如果您不执行此onload,请尝试进行onload。

07-24 17:52
查看更多