我想使用我自己的操作处理程序将相同的调整大小元素应用于元素?让我们看一下代码。
这是我的常规可调整大小处理程序,该类的任何元素.resizable
都可以使用提供的参数 ( animate,grid,zIndex
) 调整大小。
$('.resizable').resizable({
animate: true,
grid: [$(this).width(),$(this).height()],
zIndex: 0
});
现在我的自定义事件。我希望它在鼠标移动时模拟上述情况。评论进一步解释。
$("#main").on('mousedown', function(e){
// Create an new image element
// and append it to the #danka div
// and apply an mousemove event.
appendTo('#danka').on("mousemove", function(e){
// I need it so; as the mouse moves,
// it simulate the .resizable() event,
// created above with all param.
});
});
基本上我试图移动鼠标(跟踪鼠标位置)并将其传递给 .resizable() 事件以处理实际的重新调整大小。
这可能吗?我看了看,trigger()
但似乎看不到它是如何工作的?
谢谢。