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.

Im having a problem delaying links so that the user sees them animate, when he clicks he instantly goes to the page rather then seeing the animation first, when using the following code to delay hrefs it still didnt work:

For CSS Animation ----------------

.dock li:target a {
    -webkit-animation: bounce .6s 6 alternate ease-out;
    -moz-animation: bounce .6s 6 alternate ease-out;
}

For Delay to let user see the animation first ------------

 $('.footer a').click(function(e) {
            var anchor = $(this), h;
            h = anchor.attr('href');
            e.preventDefault();
            setTimeout(function() { window.location.href = h; }, 3000 );  {   
            };
        });

Any help please??

share|improve this question
can you please shae any demo link? – Nimit Dudani Nov 3 '12 at 9:46
demo.nickbugeja.com, on the bottom the MAC OS style dock, the Events button takes you to the event page with a delay but it does not animate as the others which are not links yet – user324023490234 Nov 3 '12 at 9:47
unfortunately your site is block in my network, sorry – Nimit Dudani Nov 3 '12 at 9:49
ok no problem, do you know what i can do so that i animate and after animate it goes to link? because that code is making my animation delay too – user324023490234 Nov 3 '12 at 9:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.