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'm looking for an ULTRA-light framework or snippet which handles -webkit css page transitions in a similar way to JQM or JQTouch. They work fine but I don't want to add almost 200kb of resources just to get some transitions.

I'd like it to feature :

1 Page-to-page switching (divs) within a single HTML-doucment.

2 Do a 'flip' and possibly a 'slide' transition.

Has anyone seen such a thing?

Edit: I'd like to avoid using jQuery all together.

share|improve this question
Have you looked at Jo? – Pointy Feb 6 '12 at 15:04
Yes! Not really what I was looking for.. – wije Feb 6 '12 at 15:11

3 Answers

up vote 4 down vote accepted

Update, found this:

http://www.fasw.ws/faswwp/non-jquery-page-transitions-lightweight/

Looks as if this guy has been able to (almost) extract JQM's transitions to a stand-alone script..

Inspired by this I wrote this script which flips between pages: http://jsfiddle.net/wije/AAfek/

Works a treat for my purposes..

share|improve this answer
A good one! Thanks! – BorisD Jul 23 '12 at 14:51

Check out https://github.com/dgileadi/zepto-page-transitions - great, great stuff!

share|improve this answer

U can check out a lightweight page flip jquery at: http://tympanus.net/codrops/2010/12/14/moleskine-notebook/

They have included few images with the script, u can avoid them to obtain even lesser size.

I guess this is the effect you are looking for using CSS -webkit transformations:

flip effect with webkit animation

share|improve this answer
Yeah, not really the kind of flipping I was referring to, thanks though. – wije Feb 6 '12 at 16:11
Wat kind of flip or slide u want, any demo page u got on normal jquery? – pansp Feb 6 '12 at 16:22
the kind of flip often seen in mobile applications, for example in JQM – wije Feb 6 '12 at 16:30
that's more like the effect I want, although I would love to have seen some code making it a more general function (intended for switching pages in a mobile app), not just a css hover effect. – wije Feb 7 '12 at 9:45
I agree you'll have to modify the script to suit your requirement. You can achieve the same effect by altering the script by changing :hover to clickEffect using javascript to trigger the flip effect. – pansp Feb 7 '12 at 10: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.