如何在拖动移动期间操纵拖动图像的坐标

时间:2017-07-07 07:49:34

标签: javascript html gwt drag-and-drop

在某些情况下,我会在我的应用程序中使用特定的拖动图像来执行某些拖动操作。添加相对于鼠标光标时,也可以放置图像。这很好用。 在拖动移动期间是否也可以操纵拖动图像的坐标?在我的情况下,拖动图像的x坐标必须是固定的,只有y坐标可以改变,因此拖动图像只能上下移动。 到目前为止,我发现无法处理这个问题。

非常感谢,Szdnez

1 个答案:

答案 0 :(得分:0)

您无法使用HTML 5拖放API来操作它,但您可以使用某些库作为jquery ui draggable来执行此操作。 还有大量的图书馆也有同样的意图。 :)



$( function() {
    $( "#draggable" ).draggable({axis: 'x'});
  } );

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <style>
  #draggable { width: 150px; height: 150px; padding: 0.5em; }
  </style>
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
 
<div id="draggable" class="ui-widget-content">
  <p><b>[DRAG ME]</b><p>
  <p>Drag fixed to the x axis</p>
</div>
 
 
</body>
</html>
&#13;
&#13;
&#13;