使用CSS使Div可拖动

lbsnaicq  于 2022-12-24  发布在  其他
关注(0)|答案(9)|浏览(400)

我想让id为“drag_me”的div标签可以拖动到从左起300px和从上起460px的长度,只使用CSS。
我还想使它的大小。再次相同的条件,如上述即没有Javascript或jquery。
解决这个问题的办法是什么?

jogvjijk

jogvjijk1#

这是不使用JavaScript所能达到的最佳效果:

[draggable=true] {
  cursor: move;
}

.resizable {
  overflow: scroll;
  resize: both;
  max-width: 300px;
  max-height: 460px;
  border: 1px solid black;
  min-width: 50px;
  min-height: 50px;
  background-color: skyblue;
}
<div draggable="true" class="resizable"></div>
aemubtdh

aemubtdh2#

你可以看看HTML 5,但我不认为你可以限制你可以拖动它的区域,只是目的地:
http://www.w3schools.com/html/html5_draganddrop.asp
如果您不介意使用一些很棒的库,我鼓励您尝试Dragula

xwmevbvl

xwmevbvl3#

如果只使用css技术,这对我来说似乎是不可能的。但是你可以使用jqueryui draggable

$('#drag_me').draggable();
ljsrvy3e

ljsrvy3e4#

CSS被设计用来描述文档的表现形式,它有一些特性可以根据用户的交互来改变表现形式(主要是:hover,表示你现在指向的是交互式的东西)。
使某些东西可拖动并不是简单的表示问题,它完全属于交互逻辑的范畴,而交互逻辑是由JavaScript处理的。
你想要的是无法实现的。

n8ghc7c1

n8ghc7c15#

我发现this from W3Schools非常有用:

// Make the DIV element draggable:
dragElement(document.getElementById("mydiv"));

function dragElement(elmnt) {
  var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
  if (document.getElementById(elmnt.id + "header")) {
    // if present, the header is where you move the DIV from:
    document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
  } else {
    // otherwise, move the DIV from anywhere inside the DIV:
    elmnt.onmousedown = dragMouseDown;
  }

  function dragMouseDown(e) {
    e = e || window.event;
    e.preventDefault();
    // get the mouse cursor position at startup:
    pos3 = e.clientX;
    pos4 = e.clientY;
    document.onmouseup = closeDragElement;
    // call a function whenever the cursor moves:
    document.onmousemove = elementDrag;
  }

  function elementDrag(e) {
    e = e || window.event;
    e.preventDefault();
    // calculate the new cursor position:
    pos1 = pos3 - e.clientX;
    pos2 = pos4 - e.clientY;
    pos3 = e.clientX;
    pos4 = e.clientY;
    // set the element's new position:
    elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
    elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
  }

  function closeDragElement() {
    // stop moving when mouse button is released:
    document.onmouseup = null;
    document.onmousemove = null;
  }
}
#mydiv {
  position: absolute;
  z-index: 9;
  background-color: #f1f1f1;
  border: 1px solid #d3d3d3;
  text-align: center;
}

#mydivheader {
  padding: 10px;
  cursor: move;
  z-index: 10;
  background-color: #2196F3;
  color: #fff;
}
<!-- Draggable DIV -->
<div id="mydiv">
  <!-- Include a header DIV with the same name as the draggable DIV, followed by "header" -->
  <div id="mydivheader">Click here to move</div>
  <p>Move</p>
  <p>this</p>
  <p>DIV</p>
</div>

我希望你能用它来!

p4tfgftt

p4tfgftt6#

现在可以使用CSS属性-webkit-user-drag来完成此操作:

#drag_me {
  -webkit-user-drag: element;
}
<div draggable="true" id="drag_me">
  Your draggable content here
</div>

这个属性只被webkit浏览器支持,比如Safari或者Chrome,但是这是一个只使用CSS就可以让它工作的好方法。
HTML5 draggable属性的设置仅用于确保拖动在其他浏览器中有效。
您可以在这里找到更多信息:http://help.dottoro.com/lcbixvwm.php

xtupzzrd

xtupzzrd7#

可拖动的div not possible only with CSS,如果你想要可拖动的div,你必须使用javascript。
http://jqueryui.com/draggable/

laawzig2

laawzig28#

在我自己尝试通过复制粘贴堆栈溢出中的各种代码片段来完成这一任务之后,我强烈推荐只使用InteractJS library,它允许您轻松地创建一个可拖动和可调整大小的div(有点)。

tjjdgumg

tjjdgumg9#

$('#dialog').draggable({ handle: "#tblOverlay" , scroll: false });

    // Pop up Window 
          <div id="dialog">
                        <table  id="tblOverlay">
                            <tr><td></td></tr>
                         <table>
           </div>

选项:
1.句柄:避免了滚动条的粘性问题。2有时你的鼠标指针会在拖动时粘在弹出窗口上。

  1. scroll:防止弹出窗口超出父页面或当前屏幕。

相关问题