有谁能告诉我如何使用Effect.toggle()
向左和向右切换而不是向上和向下切换?或者Scriptaculous中还有其他任何影响吗?
答案 0 :(得分:1)
不幸的是toggle()
方法仅支持3种效果显示,幻灯片和盲目 - 如果你想从左到右做,我会建议使用morph()
方法,因为你可以在其中放置任何样式它们会来回改变
例如
// close the div horizontally
$('firstdiv').morph('width:0px;');
//open the div horizontally
$('firstdiv').morph('width:auto;');