Glassmorphism Effect Cards
Modern Glassmorphism Design
Discover the elegant frosted glass effect that's trending in modern UI design. These cards feature blur effects, transparency, and subtle borders that create the illusion of frosted glass.
Basic Glass
Simple glassmorphism effect with subtle transparency.
Gradient Glass
Glass effect with colorful gradient background.
Border Glow
Frosted glass card with illuminated border on hover.
Deep Blur
Enhanced blur effect for stronger glass appearance.
Dark Glass
Darker variant of glassmorphism with higher opacity.
Layered Glass
Multiple layers of glass creating depth effect.
How to Create Glassmorphism
.hover-card-glass {
height: 280px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 15px;
overflow: hidden;
position: relative;
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.hover-card-glass:hover {
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
transform: translateY(-10px);
}
.hover-card-glass .card-content {
padding: 20px;
position: absolute;
bottom: 0;
width: 100%;
background: linear-gradient(to top,
rgba(255, 255, 255, 0.1),
transparent);
transition: all 0.4s ease;
}