Create Flip Card Effect Using CSS
In this post i am going to share simple flip card script written purely in CSS. If you want to add flip card feature on your website without using third party plugin then you can use this Pure CSS flip card script.

HTML
Horizontal Flip
MOUNTAIN
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
LAKE
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
OCEAN
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
Vertical Flip
FOREST
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
TRACK
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
SWAMP
Angular
Good tools make application development quicker and easier to maintain than if you did everything by hand..
CSS
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono');
* {
box-sizing: border-box;
font-weight: normal;
}
body {
color: #555;
background: #222;
text-align: center;
font-family: 'Roboto Mono';
padding: 1em;
}
h1 {
font-size: 2.2em;
}
// base
.flip {
position: relative;
>.front,
>.back {
display: block;
transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
transition-duration: .5s;
transition-property: transform, opacity;
}
>.front {
transform: rotateY(0deg);
}
>.back {
position: absolute;
opacity: 0;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
transform: rotateY(-180deg);
}
&:hover {
>.front {
transform: rotateY(180deg);
}
>.back {
opacity: 1;
transform: rotateY(0deg);
}
}
&.flip-vertical {
>.back {
transform: rotateX(-180deg);
}
&:hover {
>.front {
transform: rotateX(180deg);
}
>.back {
transform: rotateX(0deg);
}
}
}
}
// custom
.flip {
position: relative;
display: inline-block;
margin-right: 2px;
margin-bottom: 1em;
width: 400px;
>.front,
>.back {
display: block;
color: white;
width: inherit;
background-size: cover!important;
background-position: center!important;
height: 220px;
padding: 1em 2em;
background: #313131;
border-radius: 10px;
p {
font-size: 0.9125rem;
line-height: 160%;
color: #999;
}
}
}
.text-shadow {
text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}
See live demo and download source code.
DEMO | DOWNLOAD
This awesome script developed by Aoyue. Visit their official repository for more information and follow for future updates.