有bug,缩放之后,就无法移动到边缘了~!!!!
看 drag.js 源码, 仓促下的解决方法,在 handle 元素鼠标按下时重新计算大小; 没有测试会不会出现其他 bug ^_^,要是被坑了我不理的哦
在 hander.mousedown(function(e){ 下按添加两行代码
hander.mousedown(function(e){ thisWidth = $this.width()+parseInt($this.css('padding-left'))+parseInt($this.css('padding-right')); thisHeight = $this.height()+parseInt($this.css('padding-top'))+parseInt($this.css('padding-bottom'));