0

我想要一个类似于下图的可实现对象的句柄。

我尝试的代码不适用于自定义句柄。

如果我包含自定义句柄选项,则重新调整大小根本不起作用。

<style>
    .object{
        width: 100px; height: 100px; border: 1px solid black;

}
#myContainer{
    height: 600px;
    border: 2px solid #ccc;
}
.handle{
    height: 10px; width: 10px; background: red;
}
</style>
<script type="text/javascript">
$(function() {
    $("#resizable").resizable({
        handles: { 'all': $('#handle') }
      });
});
</script>

<div id="myContainer">
    <div class="object" id="resizable">
        <div id="handle" class="handle"></div>
    </div>
</div>

在此处输入图像描述

4

2 回答 2

1

你看过http://jqueryui.com/demos/resizable/吗?

您可以添加一些代码来将边框更改为div虚线边框并为八个正方形使用背景图像?

于 2012-08-13T02:23:14.553 回答
1

我正在寻找的东西在这里 http://www.egrappler.com/jquery-smartit-plugin-css3-2d-transformation/

于 2012-08-13T03:27:53.997 回答