Hello,
Thanks for your Kind Patience!
This can be easily modified in the sass/shortcodes/_flipcard.scss File. Simply find the:
&:hover & {
@include transition(transform $flipcard-transition);
}
and
&-front,
&:hover &-back {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
&:hover &-front {
-webkit-transform: rotateY(-180deg);
transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
and change the &:hover with .flip-card-reverse Class. This will Flip the Flip Card only when it has the .flip-card-reverse Class which you can consider adding via JS Events like click.
You can find the Flip-Card CSS Transition Values in the sass/_variable.scss File:
$flipcard-transition : 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
There is also a super simple way to add Static Cards:
<div class="card dark rounded-6 p-5 position-relative bg-transparent border-0 overflow-hidden">
<img src="your-image.jpg" alt="Image" class="position-absolute top-0 start-0 w-100 h-100 object-cover z-1">
<div class="card-body z-3">
<h2 class="mb-3">Hello World</h2>
<p class="mb-0">Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti, perferendis?</p>
</div>
<div class="bg-overlay z-2">
<div class="bg-overlay-bg bg-black op-04"></div>
</div>
</div>
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.