Glassmorphism Generator

Create beautiful glass-effect designs with live preview

Card Type

Presets

Glass Properties

Shape & Size

Content

Preview

Glassmorphism Card

Beautiful transparent design

This is a sample glassmorphism card with customizable properties.

Export Code

.glassmorphism-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  height: 200px;
  transform: scale(1) rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1f2937;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
}

.glassmorphism-card:hover {
  transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.30000000000000004);
  border-color: rgba(255, 255, 255, 0.4);
}