jQuery UI Draggable 设置拖动大小

发布于 2024-09-16 02:35:41 字数 55 浏览 2 评论 0原文

我有许多小图标,可以通过我克隆的 jQuery 进行拖动,我可以在拖动开始时使可拖动图标变大吗?

I have a number of small icons which are draggable via jQuery which i clone, can i make the draggable icon larger when drag starts?

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

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

发布评论

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

评论(2

归属感 2024-09-23 02:35:41

您可以设置 .height().width() 使用 start停止事件,如下所示:

$(".icon").draggable({
    start: function() {
        $(this).height(100).width(100);   //drag dimensions
    },
    stop: function() {
        $(this).height(50).width(50);     //original icon size
    }
});​

你可以给它在这里尝试一下,或者更紧凑一点

$(".icon").draggable({
    start: function() {
        $(this).css({ height: 100, width: 100 });
    },
    stop: function() {
        $(this).css({ height: 50, width: 50 });
    }
});​

You could set the .height() and .width() using the start and stop events, something like this:

$(".icon").draggable({
    start: function() {
        $(this).height(100).width(100);   //drag dimensions
    },
    stop: function() {
        $(this).height(50).width(50);     //original icon size
    }
});​

You can give it a try here, or a bit more compact:

$(".icon").draggable({
    start: function() {
        $(this).css({ height: 100, width: 100 });
    },
    stop: function() {
        $(this).css({ height: 50, width: 50 });
    }
});​
已下线请稍等 2024-09-23 02:35:41

将事件绑定到dragstart和dragend,请参阅此处的示例:
Active Drag Demo (number 5)

和 addClass() ,当拖动开始时,图像的样式将是更大,当拖动停止时removeClass()。

Bind events to dragstart and dragend, see sample here:
Active Drag Demo (number 5)

And addClass() when dragging start with styles that couse image will be bigger, and removeClass() when drag stops.

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