你好我使用基于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
答案 0 :(得分:0)
您可以在Jquery UI幻灯片中设置方向,如下所示
http://docs.jquery.com/UI/Effects/Slide
$("div").click(function () {
$(this).hide("slide", { direction: "down" }, 1000);
});