Blur effect for element

Vasiliy K.
35 Posts
Vasiliy K. posted this 26 February 2021
Wishlist

Hello!

I think that Blur effects for elements in Nicepage must have!
Vote fore this topic!

Thanks!

Hello! I think that Blur effects for elements in Nicepage must have! Vote fore this topic! Thanks!
Vote to pay developers attention to this features or issue.
9 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 01 March 2021

Hello Vasiliy,

Thanks for your suggestion. We will add it to our wishlist.
...................................................
Sincerely,
Lilioneta
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hello Vasiliy, Thanks for your suggestion. We will add it to our wishlist. ................................................... Sincerely, Lilioneta Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
ralf6606
13 Posts
ralf6606 posted this 11 February 2022

that's how i do it...

.blur {
-webkit-filter: blur(2px);
filter: blur(2px);
}

that's how i do it... .blur { -webkit-filter: blur(2px); filter: blur(2px); }
Vasiliy K.
35 Posts
Vasiliy K. posted this 14 November 2022

Hi,

what's news about blur effect in Nicepage?

It's good idea and tool for web designers..

Hi, what's news about blur effect in Nicepage? It's good idea and tool for web designers..
Support Team
Support Team posted this 14 November 2022

Vasiliy,

There is, unfortunately, no answer about this feature yet. Thank you for your patience!

...................................................
Sincerely,
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Vasiliy, There is, unfortunately, no answer about this feature yet. Thank you for your patience! ................................................... Sincerely, Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
xvemanuelvx
362 Posts
xvemanuelvx posted this 14 November 2022

Hi,

what's news about blur effect in Nicepage?

It's good idea and tool for web designers..

Du you mean background blur?
I always do this with costum CSS.
https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de

> Hi, > > what's news about blur effect in Nicepage? > > It's good idea and tool for web designers.. Du you mean background blur? I always do this with costum CSS. https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de
Vasiliy K.
35 Posts
Vasiliy K. posted this 14 November 2022

Hi,

what's news about blur effect in Nicepage?

It's good idea and tool for web designers..

Du you mean background blur?
I always do this with costum CSS.
https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de

For example, blur in header on this website https://www.diadoc.ru/

> > Hi, > > > > what's news about blur effect in Nicepage? > > > > It's good idea and tool for web designers.. > > Du you mean background blur? > I always do this with costum CSS. > https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter?retiredLocale=de For example, blur in header on this website https://www.diadoc.ru/
xvemanuelvx
362 Posts
xvemanuelvx posted this 16 November 2022

Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below.

.myclass {
/*background blur*/
backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
/*background color and transparency*/
  background-color: rgba(0, 0, 0, 0.6)
}
Try using custom CSS Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below. .myclass { /*background blur*/ backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); /*background color and transparency*/ background-color: rgba(0, 0, 0, 0.6) }

Last edited 29 September 2023 by Support Team

Vasiliy K.
35 Posts
Vasiliy K. posted this 17 November 2022

Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below.

.myclass {
/*background blur*/
backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
/*background color and transparency*/
  background-color: rgba(0, 0, 0, 0.6)
}

Cool! It's work! Thank you!

> Try using custom CSS > Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below. > > .myclass { > /*background blur*/ > backdrop-filter: blur(10px); > -webkit-backdrop-filter: blur(10px); > /*background color and transparency*/ > background-color: rgba(0, 0, 0, 0.6) > } Cool! It's work! Thank you!

Last edited 29 September 2023 by Support Team

diwrk
3 Posts
diwrk posted this 27 September 2023

Try using custom CSS
Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below.

.myclass {
/*background blur*/
backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
/*background color and transparency*/
  background-color: rgba(0, 0, 0, 0.6)
}
> > Try using custom CSS > Note that in the Nicepage editor you need to set the background color to transparent. I have already assigned a black background color with 60% opacity in the code below. > > .myclass { > /*background blur*/ > backdrop-filter: blur(10px); > -webkit-backdrop-filter: blur(10px); > /*background color and transparency*/ > background-color: rgba(0, 0, 0, 0.6) > }

Last edited 29 September 2023 by Support Team

You must log in or register to leave comments