Build flip cards with transforms

Create a simple card flip animation on-hover with CSS 3D transforms.

We’re transitioning to a new UI, and are in the process of updating our Webflow University content.

In this lesson you’ll learn how to create a simple card flip animation with CSS 3D transforms — without writing any code. Card flips are a great way to add visual interactivity when you want to reveal additional information. For example, you could use a card flip animation to show more details about a product you’re selling. 

In this lesson:

  1. Create a Section and Div block to hold your card image elements
  2. Create card front and back image elements
  3. Set the child perspective on the parent element
  4. Set transform properties on the card image elements
  5. Animate the Card wrapper to rotate on hover 

Create a Section and Div block to hold your card image elements

To get started, add a Section to your page: 

  1. Open the Add elements panel from the left toolbar
  2. Drag a Section onto your page

Place a Div block in the Section you just added:

  1. Drag a Div block from the Add elements panel and place it in the Section you just created 
  2. Give the Div block a class (e.g., “Card wrapper”) 

Create card front and back image elements

To add and prep your card image elements: 

  1. Drag 2 separate Image elements from the Add elements panel and place them in the Card wrapper Div block you just created 
  2. Choose your first image and give it a Class name of Card front. Repeat this for your second image, but give it a Class name of Card back. 

To make images stack: 

Choose each image and under Layout, set them to Display: Block. Make sure you do this for both images to make them sit on top of each other.

Center the images in the middle of the Card wrapper Div block. Go to Spacing and set each image’s left and right margins to Auto. If you’d like a quicker way to center your images, click the Center element horizontally button to set your margins automatically.

To allow the images to sit stacked on top of one another, you’ll need to add a CSS style. In the Style panel > Position, set each image to Absolute and choose the Top position. 

Because you absolutely positioned your card images, both of the cards are stacked. Your Card back is located behind Card front.

To be able to work with the back card, let’s hide the front card from view: 

  1. Choose the Card front image
  2. Go to Layout 
  3. Temporarily set the Display to None

Set the child perspective on the parent element

Remember the Section you dragged onto your page earlier? Because it’s the parent element of the Card wrapper Div block, we need to set the section’s Children perspective. By setting this perspective, it allows us to see our transform in 3D. 

  1. Choose the Section
  2. Open the Style panel > Effects > 2D & 3D transforms
  3. Click the 3 disclosure dots to open Transform settings
  4. Under Children perspective, set a Distance of 1234 pixels (you can always adjust this later to make your 3D card flip look exactly the way you envision it) 

Set transform properties on the card image elements

Now that your Section has its children perspective set and your back card is visible, let’s set up the back card’s transform properties.

  1. In the Style panel, go to Effects and add a 2D & 3D transform with the plus button 
  2. Choose Rotate and rotate the image element by 180 degrees on the Y-axis 

Because you’ve rotated the back card, you can see the mirrored view of the back of the card. Essentially, this 180-degree transform has rotated the Card back so it faces the opposite direction, pointing away from us. As a result, the portion of the card that’s visible to us is the card’s Backface. Keep in mind, our goal with the card flip animation is for each card’s Backface to be hidden. 

To set the Backface of the card to be hidden: 

  1. Return to Effects > 2D & 3D transforms
  2. Click the 3 disclosure dots to open Transform settings 
  3. Set Backface to Hidden

Next, re-enable visibility of the Card front image element. 

  1. Choose the Card front image element
  2. Go to Display and set it to Block 

You’ll also want to hide the Card front’s Backface in the same way you did for the Card back.

  1. Select the Card front element.
  2. Go to Effects > 2D & 3D transforms 
  3. Click the 3 disclosure dots to open Transform settings 
  4. Set Backface to Hidden

Animate the card wrapper to rotate on hover

It’s time to add the animation to flip the card and reveal the Card back on hover. 

Choose the Card wrapper Div block. This allows the flip animation to affect the entire Card wrapper Div block as well as both of our child card elements. 

  1. Go to the Selector field for the Card wrapper Div block 
  2. Choose the Hover state within the States dropdown menu
  1. With the Hover state active, scroll down to Effects > 2D & 3D transforms 
  2. Click the + and choose the Rotate option 
  3. Set the Card wrapper to rotate 180 degrees on the Y-axis


To see the flip animation you just created, return to the original state of the Card wrapper Div block by setting the State to None

Lastly, add a transition to the Card wrapper Div block. 

  1. Open the Style panel > Effects > Transitions 
  2. Add a new transition with the plus button 
  3. Under the Type dropdown menu, choose Transform
  4. Add a duration of 1000 milliseconds 

Time to celebrate — you’re done! Click the preview button in the Designer to test your card flip in action. Hover over the card and back out again to see the card flip transition come to life! Flipping awesome!  

Related resources

Table of contents

Continue learning

Hmm…we couldn’t find any results for “search query”. Try a different search term or check out our community forum.

Search the forumReset the filter
Load more

Filter

Reset
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Topics
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Back to top