0

谁能告诉我如何使用Effect.toggle()来切换左右而不是上下?或者 Scriptaculous 中是否还有其他效果可以做到这一点?

4

1 回答 1

1

不幸的是,该toggle()方法仅支持 3 种效果出现、滑动和盲目 - 如果您想从左到右,我建议您使用该morph()方法,因为您可以在其中放置任何样式,它们将来回更改

例如

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

//open the div horizontally
$('firstdiv').morph('width:auto;');
于 2013-03-04T17:01:03.397 回答