我试图找出如何修复在JCrop下的选择框大小。该文档提到如何设置初始选择区域,但不是如何使其固定大小。有人知道我该如何使它固定。提前致谢。
解决方法
你基本上是在寻找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,cropWidth,cropHeight]); // you can also set selection area without the fancy animation api.setSelect([0,cropHeight]); });