I want to use the Vista / 7-aero-glass-style effect in a popup on my site, and it should be dynamic. I am fine if this is not a cross-browser effect, as long as the site still works in all modern browsers.
My first attempt was to use something like
#dialog_base { background:white; background:rgba(255,255,255,0.8); filter:blur(4px); -o-filter:blur(4px); -ms-filter:blur(4px); -moz-filter:blur(4px); -webkit-filter:blur(4px); }
However, as expected, this eroded the contents of the dialog box , and the background remained clean. Is it possible to use CSS to blur the background of a translucent element instead of its contents?
css popup aero-glass
Supuhstar Jan 28 '13 at 15:37 2013-01-28 15:37
source share