使用角上的框手柄调整元素大小

时间:2012-07-11 08:59:36

标签: jquery handle jcrop

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

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

2 个答案:

答案 0 :(得分:19)

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

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

JQUERY

$('#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;
}

答案 1 :(得分:2)

您可以使用jQuery UI Resizable插件:

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

使用“handles”参数可以通过整个边框调整元素的大小。