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 want to use the "turn" effect found here on a regular desktop site I'm building. I DO NOT want to use the jquery mobile library. I want to know if I can replicate this effect using regular jquery/css3/html5 with regular hyperlinks on a desktop site.

Please note: I am not using AJAX or PHP on my site. I want everything to be solely made up of jQuery/CSS3/HTML/Javascript. This means that it is not a one-page site. There are a bunch of different html documents paired together with hyperlinks like a traditional website, and I want to know if theres a way to use javascript to, perhaps, preload the other pages so they are ready for the animation when clicked.

I'm looking for the same exact functionality as the link I've provided. This means animate when clicked, reverse animate when going back, and preloading the pages so they're ready.

Thanks in advance guys!

share|improve this question
pre-loading the other pages so they are ready for the animation will require AJAX, unless you include all pages on the same .html page. – Kevin B Jan 20 '12 at 16:15

1 Answer

http://css3playground.com/flip-card.php

That link has some of the same transitions (including turn) but applied to smaller elements. This uses css3 transitions. I'm not sure if jQuery uses CSS3 or straight javascript to apply the transforms, but in any case the effect will be the same (just not compatible on ie8 or lower)...

And, re: "preloading the pages so they're ready." what's the difference between this and having all the content on one page? It sounds like you should be structuring your site with PHP templates and include() rather than HTML and jQuery.

share|improve this answer
jQuery Mobile uses CSS classes to create its transitions. The JS used is just to cue-up the correct classes at the correct time. – Jasper Jan 20 '12 at 18:44

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.