热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

可缩放到其他可调整对象的边框?-JQueryresizablesnaptootherresizableobjects'borders?

IwonderwhytheydidntdevelopeJQueryresizablewithoptiontosnaptheresizingobjecttoothers

I wonder why they didn't develope JQuery resizable with option to snap the resizing object to others (instead of snapping to grid) like draggable ? Does anyone know such a plugin to achieve this ? Thanks.

我想知道为什么他们没有开发JQuery resizable(可缩放的)选项,以便像draggable那样将这个可缩放的对象快照给其他人(而不是快照到网格)?有人知道这样一个插件来实现这个吗?谢谢。

2 个解决方案

#1


12  

Think this should do the trick:

我想这应该可以做到:

https://github.com/polomoshnov/jQuery-UI-Resizable-Snap-extension

https://github.com/polomoshnov/jQuery-UI-Resizable-Snap-extension

#2


1  

For me this Javascript add-on provided didn't work, maybe because it's some years outdated. Instead I found a simpliest solution that uses only an original attribute from the JQuery-UI's library.

对我来说,这个Javascript插件不起作用,可能是因为它有些过时了。相反,我找到了一个简单的解决方案,它只使用JQuery-UI的库中的原始属性。

On the dialog you want to snap, just make something like:

在你想要抓拍的对话框中,你可以这样做:

$('.your-dialog-filter').dialog().parents('.ui-dialog').draggable('option', 'snap', true);

Simple like this.

像这样简单的。

More info and demo: https://jqueryui.com/draggable/#snap-to

更多信息和演示:https://jqueryui.com/draggable/# snapto。


推荐阅读
author-avatar
铁血aaaaaaaaaaaaa_295
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有