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.

Okay, so I'm trying to figure out how to make my 3d transitions seamless on a carousel I'm working on without transitioning the entire parent piece. I'm trying to create a cube effect that will be able to be utilized by as many slides as I want. Here's what I have so far, but I can't seem to make it seamless: http://jsfiddle.net/wDMHN/4/. Help!

share|improve this question
What do you mean by "seamless" exactly? The fiddle you posted looks to work fairly well, but I'm not sure what your goal is. – DigTheDoug Sep 19 '12 at 17:38
I'm trying to achieve a cube effect, so it looks like a cube is just rotating. AKA the pieces are touching at all times. – Torr3nt Sep 19 '12 at 18:39

1 Answer

You need to start each side of the cube at its transformed position relative to the face, so one side needs to be rotate 90, the other 180, and the other 270. You also need to set your perspective origin so all of your faces are rotating around the same point.

Check out this link

It uses the keyboard to rotate the cube, but it would be a very simple change to make it autonomous.

share|improve this answer
That rotates the parent. I'm looking to rotate two children simultaneously. – Torr3nt Sep 19 '12 at 19:06
So you aren't after this effect?: paulrhayes.com/experiments/cube-3d – justnS Sep 19 '12 at 19:35
I'm after the effect, but not the method of implementation. – Torr3nt Sep 19 '12 at 20:24

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.