You may know the scriptaculous SlideUp effect. Well, It slides up a div vertically as a closing effect.

I would like to make it work horizontal. There is an option for this : scaleX:true, scaleY:false

But it doesn't work fine : the div jumps down before closing...

Does anyone know how to use the slideUp effect for horizontal sliding ?

Thanks

link|improve this question

75% accept rate
use jquery animation :D... sorry, no idea about scriptaculous – Jason Dec 25 '09 at 22:27
Yes, I should have a closer look to jQuery, it seems to be a nice library. But this horizontal slide is the final touch of my current project, and I would need to find the solution with Scriptaculous... – Yako Dec 25 '09 at 22:40
feedback

1 Answer

up vote 2 down vote accepted

There aren't any built in scriptaculous effects which accomplish this, but is fairly easy to build a custom combination effect that does just what you ask.

Here is a gist of code I use: http://gist.github.com/374478

It is just slightly modified versions of the built in SlideDown / SlideUp so that they become SlideRight / SlideLeft.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.