Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript .animate() to the left dammit!

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #31829
    JediN1nja
    Participant

    $("#about").click(function() {
    $("#about").animate({ width: "650px", height: "400px" }, 500, function() {
    $(".overlay").fadeIn(400);
    return false;
    });
    return false;
    });

    This is what I using atm. Works perfect but I want it to animate to the left and upwards not to the right and downwards?
    Is there any way to change this?

    Sort of like this:

    width: ["650px", "left"]

    Thank you!

    #57675
    rickylamerz
    Member

    Animate the margins as well. That’s what I always do.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.