Page 1 of 1

transparent blurred header

Posted: Sun Apr 12, 2015 7:12 pm
by Joe Sharples

I've made the header transparent and blurred using this style:

pre.ui-header {
-webkit-filter: blur(20px);
-moz-filter: blur(20px);
-o-filter: blur(20px);
-ms-filter: blur(20px);
filter: blur(20px);
opacity: 0.4;
}/pre

This works but it blurs all the header.
I'm just wanting to blur the background of the header, not the header title, buttons and images.

how would I apply the code above to just the background?


transparent blurred header

Posted: Sun Apr 12, 2015 8:33 pm
by Illya Stepanov

Hi Joe -

Have you tried this solution: https://devcenter.appery.io/documenta...


transparent blurred header

Posted: Mon Apr 13, 2015 9:49 am
by Joe Sharples

I looked there but couldn't find a solution to what I want to achieve


transparent blurred header

Posted: Wed Apr 15, 2015 1:26 am
by Yurii Orishchuk

Hi Joe,

Filter css style affects on whole container including all child elements.

Thus you can not implement what you want in this simple way.

But you can dynamically add some container with blured background in the header element.

Please read more about approach here: http://jordanhollinger.com/2014/01/29...

Regards.


transparent blurred header

Posted: Wed Apr 15, 2015 8:06 pm
by Joe Sharples

Thanks I will look into it shortly