iOS 7's blurred overlay effect using CSS?

Lumpy picture Lumpy · Jun 11, 2013 · Viewed 161.7k times · Source

It seems Apple's overlay is more than just a transparency. Any ideas on how to achieve this effect with CSS and possibly JS?

More than just transparency

Answer

Cana picture Cana · Jun 11, 2013

It is possible with CSS3 :

#myDiv {
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    filter: blur(20px);
    opacity: 0.4;
}

Example here => jsfiddle