移动 div 样式的光标:move

发布于 2024-08-04 21:58:46 字数 314 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手心的温暖 2024-08-11 21:58:47

如果你需要基本的想法那么它就会像这样。

  1. 当 mousedown 发生时,应该设置一个标志。

  2. 如果设置了标志并且发生了 mousemove,则根据鼠标位置更改 div 的位置。

    如果

  3. 当 mouseup 发生时取消设置标志。

由此看来,我认为开发一款并不困难。

如果您需要一个基于框架的框架,那么这个将会帮助您。使用 jQuery

Draggable

$("#modaldiv").draggable();

将使 div 可拖动。

If you need the basic idea then it will be like this.

  1. A flag should be set when the mousedown occurs.

  2. If the flag is set and mousemove occurs then change the position of the div according to the mouse position.

  3. 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

$("#modaldiv").draggable();

will make the div draggable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文