Loading video...

Video Failed to Load

Go Home

CSS placeholder shimmer ✨ - overlay a placeholder element – show when :placeholder-shown – use mask for the border – background-clip for the text - animate the gradient position love playin' with these 🧑‍🍳

46,356 views • 1 year ago •via X (Twitter)

8 Comments

jhey ʕ•ᴥ•ʔ's profile picture
jhey ʕ•ᴥ•ʔ1 year ago

here's the @CodePen for this one — always fun playing with these 🤙

Mobile Scanner's profile picture
Mobile Scanner11 months ago

Scan any documents, convert images into text, PDF files, etc. 👍

ErreTheBig's profile picture
ErreTheBig1 year ago

Are you using css layers?

ray's profile picture
ray1 year ago

You're a CSS wizard

Elaroui Mohammed's profile picture
Elaroui Mohammed1 year ago

Can you share Code ?!

jhey ʕ•ᴥ•ʔ's profile picture
jhey ʕ•ᴥ•ʔ1 year ago

sure can 🤙

Hydra's profile picture
Hydra1 year ago

Sick, definitely using this

Alexis Mora's profile picture
Alexis Mora1 year ago

Hey jhey, what do u use to edit/record the videos? 👁️

Related 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 views • 2 years ago