DEV Community

Cover image for Translucency with Transparency
Vijay Koushik, S. πŸ‘¨πŸ½β€πŸ’»
Vijay Koushik, S. πŸ‘¨πŸ½β€πŸ’»

Posted on • Originally published at svijaykoushik.github.io on

Translucency with Transparency

Hello world! So Windows 10 has been around for 2 years now with its attractive (it really is) colourful user interface, fancy start menu and live tiles. Yet the most captivating feature is the β€œblurry glass effect” that is used in store apps especially the mail, Groove Music, and the Store itself.

I’ve seen beautiful use of transparent elements in several websites , but what sets out this β€œblurry glass effect” is that you know what is in the background but you can’t see it clearly! The effect hides the details of what is behind and makes you inquisitive to see what is behind.

The β€œblurry glass effect” as I describe is called Acrylic Material which is part of the β€œFluent Design System”. It’s the name Microsoft gave to its β€œdesign guidelines” to build software for all windows 10 devices.

Now that you know what an Acrylic Material is, I’ll tell you about the experiment I did. As I said before, the acrylic material is so captivating that I thought to myself β€œWhy shouldn’t I apply this in HTML?” and with that question I started researching on the internet for existing implementations and to break the question into simpler ones to get a better understanding. I found two good existing implementations (Lucky me!) of this effect – a pen on CodemyUi.com and a thread on Stack Overflow.

These implementations involved a parent container element with a picture as a background element, let’s called it β€œmommy” layer and 3 child container elements.

  1. A container element β€œblurry” with the blurred version of the mommy layer’s background using CSS filter property - blur.
  2. Another container element β€œnoisy” with noise texture as a background.
  3. And finally, a third container element β€œshowy” with the content text or image to be displayed and a colour overlay.

In the final step the second key property, the first being β€œBlur filter” in this effect β€œTransparency” which in contrast is named β€œOpacity” in CSS. This is the finishing touch to this effect. I achieved translucency via both colour transparency, where one can add transparency to the colour using the alpha value of that colour with the rgba() function and the opacity property of CSS. I found that opacity of 0.3 or 30% is sufficient for this effect. These steps are pretty close to Microsoft’s own recipe of creating the acrylic material.

Micrososft's acrylic recipeMicrososft’s acrylic recipe

Well, except for the exclusion blend. It can be added to the Blurry container with the CSS property β€œbackground-blend-mode" . This is the recipe for HTML implementation

Html recipe for acrylicHtml recipe for acrylic

The resulting effect is very close to the original and it’s awesome! Take a look at it here Acrylic effect with background image

It’s not over yet. I know that CSS background property not only supports pictures but also gradients and pure colours. Can this effect be applied to gradients and colours? A question popped in my head. So, I started experimenting this with different backgrounds with different colours and different gradients. And the result of this experiment is... (Drum roll) YES! This effect works on images, gradients and colours as background. Change the background from image to a gradient. Or just use a pure colour omitting the former.

Here's a sample with the Indian flag's tri-color gradient as a background with the acrylic effect Acrylic effect with gradient background

I had so much fun learning about this effect. I learnt about CSS filters , pseudo elements and efficient use of z-indexing to stack up multiple layers to create a single cool effect. Watch the effect in action in this fiddle. Click/tap on the menu icon to toggle the navigation pane.
It's awesome na? Did you like it? Don’t forget to share what you think about this post in the comments.

Latest comments (7)

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
svijaykoushik profile image
Vijay Koushik, S. πŸ‘¨πŸ½β€πŸ’»

I've made your requested change. Thanks for pointing this out

Collapse
 
seankilleen profile image
Sean Killeen

Great, thank you!

Collapse
 
palle profile image
Palle • Edited

There is a CSS attribute backdrop-filter, which applies an effect to whatever is behind the element that has the attribute.

.container {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
}

And that's it. Similar effect (except the noise).
Also, this doesn't make the edges of the blurred content appear transparent.

Sadly this only works in Safari and apparently the next version of Edge.

Here's an example.

Collapse
 
svijaykoushik profile image
Vijay Koushik, S. πŸ‘¨πŸ½β€πŸ’» • Edited

Wow! This is a cool feature. This property frees me from the hassle of using a separate div for blur and positioning it behind the content using z-index. How did I miss this during my research? Thank you @palle for pointing out the existence of this property πŸ‘πŸ½

Collapse
 
equinusocio profile image
Mattia Astorino

Only supported by Safari and chrome (behind flag).

Thread Thread
 
svijaykoushik profile image
Vijay Koushik, S. πŸ‘¨πŸ½β€πŸ’»

Thanks for the heads up πŸ‘πŸ½