Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
e.g. jsfiddle.net/DcWS2/10 – Stano May 22 at 13:21

10 Answers

up vote 138 down vote accepted

A great tutorial to slide elements in different directions.

share|improve this answer
10  
my favourite (requires a fixed width e.g. 300px) is to put overflow:hidden on the container, and then just use position:relative and right:300px on your element, and then in jQuery do $(".slide").animate({right:'0'}) – jackocnr Nov 10 '11 at 12:52
$("#slide").animate({width:'toggle'},350);
share|improve this answer

This can be achieved natively using the jQueryUI hide/show methods. Eg.

    // To slide something leftwards into view,
    // with a delay of 1000 msec
    $("div").click(function () {
          $(this).show("slide", { direction: "left" }, 1000);
    });

Reference: http://docs.jquery.com/UI/Effects/Slide

share|improve this answer
2  
This is the answer. – ekerner Aug 27 '12 at 6:13
6  
@ekerner - this requires JQueryUI, which is a massive library. If all you want is a simple slide transition, this is probably not the answer ;) – Jesse Nov 10 '12 at 2:28
1  
This is the best way if you have jQueryUI installed. – steampowered Nov 14 '12 at 15:39
Agreed, THIS is the answer! – JoseE Feb 21 at 20:24

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:

$(document).ready(function(){
    // Mostra e nascondi view-news
    var active = "europa-view";
    $('a.view-list-item').click(function () {
        var divname= this.name;
        $("#"+active ).hide("slide", { direction: "right" }, 1200);
        $("#"+divname).delay(400).show("slide", { direction: "right" }, 1200);
        active = divname;
    });
});

Get html and css at Fiddle link.

Added white background and left-padding just for better effect presentation.

share|improve this answer
works like a charm :) thanks – Orhaan May 18 at 10:53
Nice :) good to be helpful – Erwin Julius May 19 at 0:52

I know this is late, but still a good working toggle functionality

http://www.webstutorial.com/jquery-slide-left-right/jquery

share|improve this answer

I guess you are looking for an horizontal accordion. Take a look at these for a start:

share|improve this answer

I've done it this way:

var btn_width = btn.width();
btn.width(0);
btn.show().animate({width: btn_width}, {duration: 500});

Note, that node "btn" should be hidden before animation, and you might also need to set "position: absolute" to it.

share|improve this answer

too late but too simple

<script src="jquery.min.js"></script>
 <script src="jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
  $("#flip").click(function () {
          $("#left_panel").toggle("slide", { direction: "left" }, 1000);
    });
});
</script>
share|improve this answer

How about this

$('#pollSlider-button').animate({"margin-right": '+=200'});

live demo http://jsfiddle.net/XNnHC/3/

share|improve this answer

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

$('#the_element_to_slide_from_right_left').animate({ width:'your desired width' }, 600);

Simple as that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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