javascript - Blurry background on modal -


how have blurred background instead of white background when popup opened ?
add :

-webkit-filter: blur(8px); -ms-filter: blur(8px); filter: blur(8px); -moz-filter: blur(8px); -o-filter: blur(8px); 

on
.splash { background-color: rgba(255, 255, 255, 0.9);}

blur in fullpage, popup included. can help, here jsfiddle demo: https://jsfiddle.net/kodjoe/dgykn78o

give blur properties .wrapper. you'll achieve want.

.wrapper{     -webkit-filter: blur(8px);     -ms-filter: blur(8px);     -moz-filter: blur(8px);     -o-filter: blur(8px);     filter: blur(8px); }  

enter image description here


Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

c# - two queries in same method -