1

所以我想要一个类似的效果:

http://docs.jquery.com/UI/Effects/Clip

但我希望水平剪切仅从左到右或从右到左发生(使用我将定义的参数),而不是同时从两侧朝向中心。我想知道我应该如何修改 jquery 代码来实现我所需要的。

就像是 :

$(this).hide("clip", { direction: "horizontalL" }, 1000);
$(this).hide("clip", { direction: "horizontaLR" }, 1000);

提前致谢。

4

1 回答 1

0

你可以试试幻灯片:

$(this).hide("slide", { direction: "left" }, 1000);

或者

$(this).hide("slide", { direction: "right" }, 1000);
于 2012-07-04T21:11:22.903 回答