Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

🤌 Glassmorphism with Tailwind CSS 1️⃣ set a semi-transparent background 2️⃣ use `backdrop-filter: blur` 3️⃣ play with the bg opacity, blur level, border and shadow ✨

12,802 Aufrufe • vor 1 Jahr •via X (Twitter)

9 Kommentare

Profilbild von Falgantil
Falgantilvor 1 Jahr

Really love these simple clips that shows how to use CSS properties you might not get to use on a daily basis.

Profilbild von Simon Vrachliotis
Simon Vrachliotisvor 1 Jahr

That's great to hear 🤙

Profilbild von 𝗻𝗲𝘅𝘅𝗮𝗶
𝗻𝗲𝘅𝘅𝗮𝗶vor 1 Jahr

So good!

Profilbild von Simon Vrachliotis
Simon Vrachliotisvor 1 Jahr

✌️

Profilbild von Web Reaper | Website Engineer
Web Reaper | Website Engineervor 1 Jahr

Definitely a popular effect. Only risk is stuttering if there's a lot of it or the blur is high

Profilbild von Simon Vrachliotis
Simon Vrachliotisvor 1 Jahr

True, use with moderation ✌️

Profilbild von Jon Meyers
Jon Meyersvor 1 Jahr

This is sick! More videos like this please!

Profilbild von Simon Vrachliotis
Simon Vrachliotisvor 1 Jahr

🫡

Profilbild von Leandro Acosta 🇧🇷🇨🇳
Leandro Acosta 🇧🇷🇨🇳vor 1 Jahr

Whole ERP using this glassmorphism

Ähnliche Videos

CSS Trick! 🤙 You can create gradient borders on translucent elements using mask-clip and mask-composite with a pseudo-element 🔥 .gradient-border::after { mask-clip: padding-box, border-box; mask-composite: intersect; mask: linear-gradient(transparent, transparent), linear-gradient(white, white); } It's the same "Transparent border trick" from before. But, now you apply it to a pseudo-element 😎 The trick is to create a pseudo-element with a gradient background and then mask it so we only see the part we want, the border ✨ mask-clip defines the area affected by a mask. Similar to how you can define background-size. Using padding-box and border-box constrains the two masks. mask-composite is the magic part ✨ It defines a compositing operation for stacked mask layers. Using intersect means that the parts that overlap get replaced. And this seems to work in all browsers 🙌 As for the rest of the styles... – Make sure you set pointer-events: none on the pseudo-element – Make sure it fills the parent element. You can use position: absolute and inset: 0 – Make sure the background fills the space including the border-width. You can use calc to achieve that: --bg-size: calc(100% + (2px * var(--border))); background: var(--gradient) center center / var(--bg-size) var(--bg-size); That's it! 🚀 Gradient borders on translucent elements. You can set all the backdrop-filter: blur() you like! 😅 CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

269,739 Aufrufe • vor 2 Jahren