Issue on Having 3 Faces Flip Using jQuery

Issue on Having 3 Faces Flip Using jQuery

I am trying to create a Three Face Flip function in CSS3 and jQuery at this demo . Can you please take a look at the demo and let me know why the second face is missing?

Can you also please let me know how I can set up a Time out to flip all three faces every 10 seconds?

  1. <div class="flip"> 
  2.         <div class="card"> 
  3.             <div class="face one"> 
  4.                One
  5.             </div> 
  6.             <div class="face two"> 
  7.                 Two
  8.             </div> 
  9.               <div class="face three"> 
  10.                 Three
  11.             </div> 
  12.         </div> 
  13.     </div> 

  1.     $('.flip').click(function(){
  2.         $(this).find('.card').addClass('flipped').mouseleave(function(){
  3.             $(this).removeClass('flipped');
  4.         });
  5.         return false;
  6.     });