使用鼠标动态调整 div 大小

发布于 2024-12-26 12:45:17 字数 108 浏览 1 评论 0原文

我想要一个带有使用鼠标调整大小功能的 div 标签。我的意思是,当我将鼠标放在 div 的任何一角并拖动鼠标时,div 应该根据鼠标移动调整大小。当我离开鼠标按钮时,div 应该永久具有这个大小。 谢谢

I want to have a div tag with resize capability using mouse. I mean when I mousedown on any of the corner of the div and drag the mouse then the div should be resized according to the mouse movement. And when I leave the mouse button the div should have this size permanently.
Thank You

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

森林迷了鹿 2025-01-02 12:45:17

jQuery UI 可调整大小正是为您做到的。

http://jqueryui.com/demos/resizing/

$(function() {
    $( "#resizable" ).resizable();
});

jQuery UI Resizable does just that for you.

http://jqueryui.com/demos/resizable/

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