12

Jcrop中,选择裁剪区域后,会出现一个 div,边角处带有框手柄。

是否有任何 jQuery 插件可以构建这种类型的框句柄?

4

2 回答 2

20

如上所述,您可以使用 jQuery UI 的可调整大小。我什至为你设置了一个小提琴!

http://jsfiddle.net/digitalaxis/j2JU6/

查询

$('#element').resizable({
    handles: {
    'ne': '#negrip',
    'se': '#segrip',
    'sw': '#swgrip',
    'nw': '#nwgrip'
    }
});

HTML

<div class="ui-resizable-handle ui-resizable-nw" id="nwgrip"></div>
<div class="ui-resizable-handle ui-resizable-ne" id="negrip"></div>
<div class="ui-resizable-handle ui-resizable-sw" id="swgrip"></div>
<div class="ui-resizable-handle ui-resizable-se" id="segrip"></div>

CSS

#elementResizable {
    border: 1px solid #000000;
    width: 300px;
    height: 40px;
    overflow: hidden;
}
#nwgrip, #negrip, #swgrip, #segrip, #ngrip, #egrip, #sgrip, #wgrip {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 1px solid #000000;
}
#segrip {
    right: -5px;
    bottom: -5px;
}
于 2012-07-13T17:56:12.977 回答
2

您可以使用 jQuery UI Resizable 插件:

http://jqueryui.com/demos/resizable/

使用“handles”参数使你的元素在整个边框上都可以调整大小。

于 2012-07-11T09:12:35.693 回答