Support Center
Visit Demo
License manager
Buy @ envato
toggle menu
Categories
Discussions
Activity
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Sign In
·
Register
×
Home
›
Theme support
›
BeBuilder
Flip Boxes?
FlexQube
October 2017
in
BeBuilder
Hi,
Do you guys have flip boxes that I could use on my pages? I really like this feature, similar to what is here:
https://avada.theme-fusion.com/flip-boxes/
Any help would be awesome!
Comments
Bryan
October 2017
Hi,
we do not have a flip effect, just a image switch on hover in the image item.
thanks
Brunno299
October 2018
flip box code
.flip-box {
background-color: transparent;
width: 300px;
height: 200px;
border: 1px solid #f1f1f1;
perspective: 1000px;
}
.flip-box-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
transform: rotateX(180deg);
}
.flip-box-front, .flip-box-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-box-front {
background-color: #bbb;
color: black;
}
.flip-box-back {
background-color: dodgerblue;
color: white;
transform: rotateX(180deg);
}
</style>
</head>
<body>
<h1>3D Flip Box (Vertical)</h1>
<h3>Hover over the box below:</h3>
<div class="flip-box">
<div class="flip-box-inner">
<div class="flip-box-front">
<h2>Front Side</h2>
</div>
<div class="flip-box-back">
<h2>Back Side</h2>
</div>
</div>
</div>
but ins´t responsive
Sign In
or
Register
to comment.
Comments