Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/81.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/bash/18.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript jquery水平剪辑_Javascript_Jquery_Clip - Fatal编程技术网

Javascript jquery水平剪辑

Javascript jquery水平剪辑,javascript,jquery,clip,Javascript,Jquery,Clip,所以我想要一个类似的效果: 但我希望水平剪裁只从左到右或从右到左(使用我将定义的参数),而不是从两侧同时朝向中心。我想知道应该如何修改jquery代码来实现我所需要的 比如: $(this).hide("clip", { direction: "horizontalL" }, 1000); $(this).hide("clip", { direction: "horizontaLR" }, 1000); 提前感谢。您可以尝试幻灯片: $(this).hide("slide", { direc

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

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

比如:

$(this).hide("clip", { direction: "horizontalL" }, 1000);
$(this).hide("clip", { direction: "horizontaLR" }, 1000);
提前感谢。

您可以尝试幻灯片:

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


如果我不想实现翻页系统,我会使用它。我认为剪辑是我的选择。
$(this).hide("slide", { direction: "right" }, 1000);