scriptaculous effect.toggle to left and right

时间:2013-03-02 05:58:24

标签: prototypejs scriptaculous

有谁能告诉我如何使用Effect.toggle()向左和向右切换而不是向上和向下切换?或者Scriptaculous中还有其他任何影响吗?

1 个答案:

答案 0 :(得分:1)

不幸的是toggle()方法仅支持3种效果显示,幻灯片和盲目 - 如果你想从左到右做,我会建议使用morph()方法,因为你可以在其中放置任何样式它们会来回改变

例如

// close the div horizontally
$('firstdiv').morph('width:0px;');

//open the div horizontally
$('firstdiv').morph('width:auto;');