我试图弄清楚如何在JCrop下修复选择框的大小。该文档提到了如何设置初始选择区域,但没有提到如何使其固定大小。有人知道我该如何解决。提前致谢。

http://deepliquid.com/content/Jcrop_Manual.html

最佳答案

您基本上是在寻找API部分。我自己广泛使用了此插件,我确切地知道您要查找的内容:

var api;
var cropWidth = 100;
var cropHeight = 100;

$(window).load(function() {

    // set default options
    var opt = {};

    // if height and width must be exact, dont allow resizing
    opt.allowResize = false;
    opt.allowSelect = false;

    // initialize jcrop
    api = $.Jcrop('#objectId', opt);

    // set the selection area [left, top, width, height]
    api.animateTo([0,0,cropWidth,cropHeight]);

    // you can also set selection area without the fancy animation
    api.setSelect([0,0,cropWidth,cropHeight]);

});

关于jquery - jQuery JCrop-如何设置固定大小的选择区域?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/346045/

10-10 00:29