所以我想要对这个产生类似的效果:
http://docs.jquery.com/UI/Effects/Clip
但是我希望水平裁剪仅从左到右或从右到左(使用我将定义的参数)发生,而不是从两侧同时朝向中心。我想知道如何修改jquery代码以实现我需要的东西。
类似的东西:
$(this).hide("clip", { direction: "horizontalL" }, 1000);
$(this).hide("clip", { direction: "horizontaLR" }, 1000);
提前致谢。
答案 0 :(得分:0)
您可以尝试幻灯片:
$(this).hide("slide", { direction: "left" }, 1000);
或
$(this).hide("slide", { direction: "right" }, 1000);