2

我正在使用以下代码:

    <div style="width: 150px; height: 125px; background: #fff; -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px; padding: 7px; border: 1px solid #999; cursor: pointer;">
    <div style="width: 100%; background: url(IMAGE NAME) no-repeat; cursor: pointer; background-position: center; background-size: 170px; height: 125px;">
    </div>
</div>      

我想这样做,以便用户可以将他们的照片定位到准确的位置,而无需保存另一张图像的副本。我知道你可以制作一个可拖动的元素,让你拖动背景,只是不确定如何。

有人可以帮我吗?

4

1 回答 1

1
<script>
  $(function() {
    $( "#draggable_parent" ).draggable();
  });
</script>
<div id="draggable_parent" style="width: 450px; height: 450px; background: #fff; -webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px; padding: 7px; border: 1px solid #999; cursor: pointer;">
  <div id="draggable" style="width: 184px; background: url(IMG_URL) no-repeat; cursor: pointer; background-position: center; border:1px solid; background-size: 170px; height: 125px;">
  </div>
</div>

I have edited the code, with the above code, the outer div will move.

于 2012-04-13T20:37:55.973 回答