Building Your Learning Module...
Getting things ready for you!
Find videos you like?
Save to resource drawer for future reference!
filter which affects the element itself, backdrop-filter affects the background behind the element. Perfect for modern glass/frosted effects!Blurs the element itself
Content becomes blurry
Use: blur images, darken elements
Blurs the background behind
Content stays sharp
Use: glassmorphism, frosted glass
backdrop-filter uses the same functions as filter, but applies them to the background!
backdrop-filter: blur(10px);backdrop-filter: brightness(80%);backdrop-filter: contrast(150%);backdrop-filter: grayscale(100%);backdrop-filter: saturate(200%);backdrop-filter: hue-rotate(90deg);backdrop-filter: blur(10px) saturate(180%);<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<div class="title">
<h1>Glassmorphism</h1>
<p>Backdrop Filter in Action</p>
</div>
<div class="container">
<div class="glass-card blur-light">
<div class="icon">✨</div>
<h2>Light Blur</h2>
<p>backdrop-filter: blur(5px)<br><br>Subtle glass effect with light background blur.</p>
</div>
<div class="glass-card blur-medium">
<div class="icon">💎</div>
<h2>Medium Blur</h2>
<p>backdrop-filter: blur(15px)<br><br>Classic glassmorphism with moderate blur.</p>
</div>
<div class="glass-card blur-heavy">
<div class="icon">🔮</div>
<h2>Heavy Blur</h2>
<p>backdrop-filter: blur(30px) saturate(200%)<br><br>Intense frosted glass with enhanced colors.</p>
</div>
</div>
</body>
</html>Loading preview...
.glass {
/* Backdrop blur */
backdrop-filter: blur(10px) saturate(180%);
/* Semi-transparent background */
background: rgba(255, 255, 255, 0.25);
/* Subtle border */
border: 1px solid rgba(255, 255, 255, 0.3);
/* Shadow for depth */
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
/* Round corners */
border-radius: 16px;
}Navigation Bars
Transparent header that blurs content behind
Modal Overlays
Dialog backgrounds with frosted effect
Cards
Modern glass cards over images/gradients
Sidebars
Floating panels with glass effect
Tooltips
Subtle frosted tooltips
Search Bars
Transparent search overlays