jQuery UI Draggable 设置拖动大小
我有许多小图标,可以通过我克隆的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以设置
.height()
和.width()
使用start
和停止
事件,如下所示:你可以给它在这里尝试一下,或者更紧凑一点:
You could set the
.height()
and.width()
using thestart
andstop
events, something like this:You can give it a try here, or a bit more compact:
将事件绑定到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.