Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用Effect.toggle()来切换左右而不是上下?或者 Scriptaculous 中是否还有其他效果可以做到这一点?
Effect.toggle()
不幸的是,该toggle()方法仅支持 3 种效果出现、滑动和盲目 - 如果您想从左到右,我建议您使用该morph()方法,因为您可以在其中放置任何样式,它们将来回更改
toggle()
morph()
例如
// close the div horizontally $('firstdiv').morph('width:0px;'); //open the div horizontally $('firstdiv').morph('width:auto;');