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); }
Comments
Post a Comment