2013-01-22 39 views
0

你好即時通訊使用基於jquery工具的幻燈片,問題是我需要更多的效果比褪色&幻燈片..是其他任何列表..我真的在文檔搜索,也許我沒有看起來不錯,但我真的沒有找到它..這裏是我的代碼..但我需要幻燈片移動到左側,而後一個從rigth移動到中心,我真的有不好的英語,這種效果如何被稱爲..它的非常非常普遍..簡單的我想..我以爲這是「幻燈片」movemnt任何方式..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

您可以在jQuery UI的滑動方向所看到如下

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

$("div").click(function() { 
     $(this).hide("slide", { direction: "down" }, 1000); 
}); 
+0

感謝兄弟..也許我的英語吧不好的..我真的需要的是應用這個幻燈片的效果:http://jquerytools.org/ 進入這張幻燈片:http://jquerytools.org/demos/tabs/slideshow.html – Monclee

+0

什麼效果你要嗎? –

+0

對本幻燈片的影響:http://jquerytools.org/ 我需要它在這張幻燈片中:http://jquerytools.org/demos/tabs/slideshow.html 我只需要改變淡入效果爲其他的影響,但我能 – Monclee