移动 div 样式的光标:move
我有一个 div,我为其设置了光标:移动样式。 div 显示为模式弹出窗口。我想让用户移动 div。
<style>
.popup{cursor:move;position: absolute; width: 100%; height: 100%; top: 0; left: 0; margin:auto;}
</style>
<div id="modaldiv" style="popup">
content goes here
</div>
非常感谢任何帮助。
谢谢。
I have a div for which i have set the cursor:move style. The div shows up as a modal popup window. I would like to let the user move the div around.
<style>
.popup{cursor:move;position: absolute; width: 100%; height: 100%; top: 0; left: 0; margin:auto;}
</style>
<div id="modaldiv" style="popup">
content goes here
</div>
Any help is greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你需要基本的想法那么它就会像这样。
当 mousedown 发生时,应该设置一个标志。
如果设置了标志并且发生了 mousemove,则根据鼠标位置更改 div 的位置。
如果
当 mouseup 发生时取消设置标志。
由此看来,我认为开发一款并不困难。
如果您需要一个基于框架的框架,那么这个将会帮助您。使用 jQuery
Draggable
将使 div 可拖动。
If you need the basic idea then it will be like this.
A flag should be set when the mousedown occurs.
If the flag is set and mousemove occurs then change the position of the div according to the mouse position.
Unset the flag when mouseup occurs.
From this I don't think it is much harder to develop one.
If you need one based on a framework then this one will help you. Using jQuery
Draggable
will make the div draggable.