所以我想要一个类似的效果:
http://docs.jquery.com/UI/Effects/Clip
但我希望水平剪切仅从左到右或从右到左发生(使用我将定义的参数),而不是同时从两侧朝向中心。我想知道我应该如何修改 jquery 代码来实现我所需要的。
就像是 :
$(this).hide("clip", { direction: "horizontalL" }, 1000);
$(this).hide("clip", { direction: "horizontaLR" }, 1000);
提前致谢。