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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -