可拖动和resizable在jQueryUI的一个图像不工作?(Draggable and resi

2019-06-24 16:04发布

我用下面的代码用于拖动和调整图像大小,

<!DOCTYPE html>
<html>
    <head lang="en">
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css"/>

        <script type="text/javascript">
    $(document).ready(function() {

        $( "#img_content" ).draggable().resizable();

    });
    </script>
    </head>
    <body class='default'>       


<div class="demo">
<!--<div id="img_content" class="ui-widget-content">
    <p>Drag me around</p>
</div>-->

<img id="img_content" class="ui-widget-content" src="Tulips.jpg" />

</div>


    </body>
</html>

可调整大小的工作corretly。 但拖动图像不工作。 如果我申请格结构

<div id="img_content" class="ui-widget-content">
        <p>Drag me around</p>
    </div>

它的工作的罚款。

如何实现拖动和缩放图像标签?

Answer 1:

应该包住图像与一个div style="display:inline-block;然后进行DIV拖动和图像调整大小。 工作实施例



Answer 2:

我发现溶液调整/制作dragable一个与背景图像。 我想这该元素是不可拖动和调整大小。 嗯,这对我的作品。 再见。



文章来源: Draggable and resizable in JqueryUI for an image is not working?