How to achieve simple glassmorphism effect in your website

A simple example with cards

To make a very simple blurry glass like effect we can make use of some pretty simple css to add this styling .

Glassmorphism makes use of background blur with bright colors and some transparency and a very subtle bord…


This content originally appeared on DEV Community and was authored by Satvik

img

A simple example with cards



To make a very simple blurry glass like effect we can make use of some pretty simple css to add this styling .

Glassmorphism makes use of background blur with bright colors and some transparency and a very subtle border

4 lines of CSS is all it takes :

 backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    background-color: rgba(0, 0, 0, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.125);

We blur the background and set the saturation to 200% to make the colors of the background pop

Here I have also put a border , as I would be using this style on a card to be displayed on my website

So I will use a subtle border to seperate it from the background
This is what it looks like in my website

website

satvik.ninja



You can change the look of this effect by changing the values of blur and saturation according to your taste


This content originally appeared on DEV Community and was authored by Satvik


Print Share Comment Cite Upload Translate Updates
APA

Satvik | Sciencx (2022-03-19T09:07:31+00:00) How to achieve simple glassmorphism effect in your website. Retrieved from https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/

MLA
" » How to achieve simple glassmorphism effect in your website." Satvik | Sciencx - Saturday March 19, 2022, https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/
HARVARD
Satvik | Sciencx Saturday March 19, 2022 » How to achieve simple glassmorphism effect in your website., viewed ,<https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/>
VANCOUVER
Satvik | Sciencx - » How to achieve simple glassmorphism effect in your website. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/
CHICAGO
" » How to achieve simple glassmorphism effect in your website." Satvik | Sciencx - Accessed . https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/
IEEE
" » How to achieve simple glassmorphism effect in your website." Satvik | Sciencx [Online]. Available: https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/. [Accessed: ]
rf:citation
» How to achieve simple glassmorphism effect in your website | Satvik | Sciencx | https://www.scien.cx/2022/03/19/how-to-achieve-simple-glassmorphism-effect-in-your-website/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.