mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
67 lines
1.4 KiB
HTML
67 lines
1.4 KiB
HTML
<div class="container">
|
|
<div class="card">
|
|
<div class="front">
|
|
<p class="front-heading">Front card</p>
|
|
<p>Follow Me For More</p>
|
|
</div>
|
|
<div class="back">
|
|
<p class="back-heading">Back card</p>
|
|
<p>Follow Me For More</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by IWhat1 - Tags: animation, 3d, card, hover, flip, hover effect, card animation, card hover */
|
|
.container {
|
|
width: 240px;
|
|
height: 294px;
|
|
perspective: 900px;
|
|
}
|
|
|
|
.card {
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: aliceblue;
|
|
position: relative;
|
|
transition: transform 1500ms;
|
|
transform-style: preserve-3d;
|
|
border-radius: 2rem;
|
|
}
|
|
|
|
.container:hover > .card {
|
|
cursor: pointer;
|
|
transform: rotateY(180deg) rotateZ(180deg);
|
|
}
|
|
|
|
.front, .back {
|
|
height: 100%;
|
|
width: 100%;
|
|
border-radius: 2rem;
|
|
position: absolute;
|
|
box-shadow: 0 0 10px 2px rgba(50, 50, 50, 2.5);
|
|
backface-visibility: hidden;
|
|
color: aliceblue;
|
|
background: linear-gradient(-135deg,
|
|
#F80A4A, #0AA4F8);
|
|
}
|
|
|
|
.front, .back {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.back {
|
|
transform: rotateY(180deg) rotateZ(180deg);
|
|
}
|
|
|
|
.back-heading, .front-heading {
|
|
font-size: 28px;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
</style>
|