I would like to have a div go from collapsed to expanded (and vice versa), but do so from right to left. Most everything I see out there is always left to right.
|
|
|
|||||
|
|
This can be achieved natively using the jQueryUI hide/show methods. Eg.
Reference: http://docs.jquery.com/UI/Effects/Slide |
|||||||||||||||
|
|
Take a look at this working example on Fiddle. It is a solution I've used originally from left to right, but I've changed it to work from right to left. It allows user to click on links quickly without breaking the animation among the available panels. The js is simple:
Get html and css at Fiddle link. Added white background and left-padding just for better effect presentation. |
|||||
|
|
|
I know this is late, but still a good working toggle functionality |
|||
|
|
|
I guess you are looking for an horizontal accordion. Take a look at these for a start: |
|||
|
|
|
I've done it this way:
Note, that node "btn" should be hidden before animation, and you might also need to set "position: absolute" to it. |
|||
|
|
|
too late but too simple
|
|||
|
|
|
How about this
live demo http://jsfiddle.net/XNnHC/3/ |
|||
|
|
|
You can define first the width of the element as 0, floating right, and then on the event that you are about to show it.. it would be like
Simple as that. |
|||
|
|

