Check out this Pen I made!
About: Discover the latest in web development, software engineering, and tech trends! 🌐💻 From insightful blogs to news and tips, we bring engaging content for developers and tech enthusiasts. Join us in ex
Check out this Pen I made!
One advice, you should rather do the hover detection on parent card, like that you'll not have a weird effect when slowly moving mouse from left or right for example.
Instead of
.card:hover {
transform: rotateY(180deg);
}
It would be better to set
.card-container:hover .card {
transform: rotateY(180deg);
}
Great effect, looks nice :D