0

您好,我正在使用基于 Jquery 工具的幻灯片,问题是我需要比淡入淡出和幻灯片更多的效果.. 是否有任何列表.. 我真的在文档中搜索,也许我看起来不太好,但实际上我没有找到它.. 在这里是我的代码..但我需要幻灯片向左移动,然后是从右移到中心,我的英语真的很糟糕,如何调用这种效果..它非常非常常见..而且简单我想..我认为实际上那是“幻灯片”运动..

希望任何人都可以帮助我。

<script language="JavaScript">
    $(function() {
        $(".slidetabs").tabs(".images > div", {

            // enable "cross-fading" effect
            effect: 'slide',
            fadeOutSpeed: "slow",

            // start from the beginning after the last tab
            rotate: true

            // use the slideshow plugin. It accepts its own configuration
        }).slideshow();
    });
</script>

这张幻灯片的效果:http: //jquerytools.org/

我在这张幻灯片上需要它:http: //jquerytools.org/demos/tabs/slideshow.html

4

1 回答 1

0

您可以在 Jquery UI 幻灯片中设置方向,如下所示

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

$("div").click(function () {
      $(this).hide("slide", { direction: "down" }, 1000);
});
于 2013-01-22T23:56:19.373 回答