// 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;
}
}
<!-- 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>
9条答案
按热度按时间jogvjijk1#
这是不使用JavaScript所能达到的最佳效果:
draggable
attribute on HTML5 Rocksresize
property on MDNaemubtdh2#
你可以看看HTML 5,但我不认为你可以限制你可以拖动它的区域,只是目的地:
http://www.w3schools.com/html/html5_draganddrop.asp
如果您不介意使用一些很棒的库,我鼓励您尝试Dragula。
xwmevbvl3#
如果只使用css技术,这对我来说似乎是不可能的。但是你可以使用jqueryui draggable:
ljsrvy3e4#
CSS被设计用来描述文档的表现形式,它有一些特性可以根据用户的交互来改变表现形式(主要是
:hover
,表示你现在指向的是交互式的东西)。使某些东西可拖动并不是简单的表示问题,它完全属于交互逻辑的范畴,而交互逻辑是由JavaScript处理的。
你想要的是无法实现的。
n8ghc7c15#
我发现this from W3Schools非常有用:
我希望你能用它来!
p4tfgftt6#
现在可以使用CSS属性
-webkit-user-drag
来完成此操作:这个属性只被webkit浏览器支持,比如Safari或者Chrome,但是这是一个只使用CSS就可以让它工作的好方法。
HTML5
draggable
属性的设置仅用于确保拖动在其他浏览器中有效。您可以在这里找到更多信息:http://help.dottoro.com/lcbixvwm.php
xtupzzrd7#
可拖动的div
not possible only with CSS
,如果你想要可拖动的div,你必须使用javascript。http://jqueryui.com/draggable/
laawzig28#
在我自己尝试通过复制粘贴堆栈溢出中的各种代码片段来完成这一任务之后,我强烈推荐只使用InteractJS library,它允许您轻松地创建一个可拖动和可调整大小的div(有点)。
tjjdgumg9#
选项:
1.句柄:避免了滚动条的粘性问题。2有时你的鼠标指针会在拖动时粘在弹出窗口上。