Glassmorphism Card with Blur Effect
A modern UI card component with glassmorphism design, featuring a frosted glass effect with backdrop blur and subtle borders.
Responsive Design
Yes
Dark Mode Support
Yes
lines
82
Browser Compatibility
Chrome · Firefox · Safari · Edge
Live Preview
Interact with the component without leaving the page.
Glassmorphism Card with Blur Effect
This card component implements the glassmorphism design trend, creating a frosted glass effect using backdrop filters and semi-transparent backgrounds. It’s perfect for modern UIs that want to achieve a sleek, contemporary look.
Features
- Glassmorphism Design: Frosted glass effect with backdrop blur
- Semi-transparent Backgrounds: RGBA colors for glass-like appearance
- Subtle Borders: Light borders to enhance the glass effect
- Hover Animations: Smooth transitions and lift effect on hover
- Dark Mode Support: Adapts to dark mode with appropriate colors
- Responsive: Works on all screen sizes
Usage
To use this card, include the HTML and CSS in your project. The key to achieving the glass effect is using backdrop-filter: blur() along with semi-transparent background colors. Note that backdrop filters may not be supported in all browsers.
Customization
You can customize the following aspects:
- Blur Amount: Adjust the
backdrop-filter: blur()value - Transparency: Modify the alpha values in the RGBA background colors
- Borders: Change border colors and widths
- Shadow: Adjust the box-shadow values for different depth effects
- Rounding: Modify border-radius for different corner styles
- Hover Effects: Customize the transform and shadow changes on hover
Browser Support
This component uses CSS backdrop-filter, which is supported in modern browsers. For older browsers, you might need to provide a fallback background or use a polyfill.
Design Considerations
Glassmorphism can be visually appealing but may impact readability. Ensure there’s enough contrast between the text and the background. Also, be mindful of performance as backdrop filters can be GPU-intensive.
HTML
5
lines
CSS
77
lines
<div class="glass-card">
<h3 class="card-title">Glass Card</h3>
<p class="card-content">This is a modern glassmorphism card with backdrop blur effect. It creates a frosted glass appearance.</p>
<button class="card-btn">Learn More</button>
</div>
Browser Compatibility
Chrome
≥ 76
Firefox
≥ 70
Safari
≥ 14
Edge
≥ 79