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.

Is there anyway to make a div box shake on page load? Like maybe just once or twice?

Update: At this URL I have it still not working on page load, what am I doing wrong? http://tinyurl.com/79azbav

I think I'm stuck at the onpage load; that failure can be seen here: Get onpage to work correctly

I've also tried initiating the animation with my already implemented body onLoad:

<body onLoad="document.emvForm.EMAIL_FIELD.focus(); document.ready.entertext.shake();" >

But still failing like a champ.

share|improve this question
8  
your accept rate.... – Royi Namir Nov 7 '11 at 20:00
5  
Click refresh and smack your monitor! :) – Louie Nov 7 '11 at 20:02
I don't get it. – 1977 Nov 7 '11 at 20:23

1 Answer

up vote 15 down vote accepted

Try something like this:

EDIT:
Changed Shake() to shake() for consistency with jQuery conventions.

jQuery.fn.shake = function() {
    this.each(function(i) {
        $(this).css({ "position": "relative" });
        for (var x = 1; x <= 3; x++) {
            $(this).animate({ left: -25 }, 10).animate({ left: 0 }, 50).animate({ left: 25 }, 10).animate({ left: 0 }, 50);
        }
    });
    return this;
} 

EDIT:
In my example the left position is set to 25, but you can reduce this for a more subtle effect or increase it for a more pronounced effect.

Using the shake function:

$("#div").shake();

Here's a jsFiddle that demonstrates it: http://jsfiddle.net/JppPG/3/

share|improve this answer
Thanks for the response, but where can I define which div this applies to? – 1977 Nov 7 '11 at 20:07
$('#div').Shake(); You should improve your accept rate @LouieLouie. – Madara Uchiha Nov 7 '11 at 20:08
@Truth: Thanks for demonstrating the implementation. – James Johnson Nov 7 '11 at 20:10
@LouieLouie: It's a jQuery function, so you can use it on any element on the page. – James Johnson Nov 7 '11 at 20:11
Thanks; like this, right? jsfiddle.net/JppPG I still can't get it. – 1977 Nov 7 '11 at 20:21
show 6 more comments

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.