No media files provided.
We want to create the following CSS card flipping effect.
See the Pen 3D Card Flipping by Thomas Seng Hin Mak (@makzan) on CodePen.
Given the following HTML:
<div class='card'>
<div class='front face'>
<img src='http://placehold.it/180x180'/>
</div>
<div class="back face">
<p>This is back</p>
</div>
</div>
<div class='card'>
<div class='front face'>
<img src='http://placehold.it/180x180'/>
</div>
<div class="back face">
<p>This is back</p>
</div>
</div>
<div class='card'>
<div class='front face'>
<img src='http://placehold.it/180x180'/>
</div>
<div class="back face">
<p>This is back</p>
</div>
</div>
Please implement the effect in CSS.
You may find the source code here: