Hello Armin
I was wondering if there is a possibility to customize the blur effect (Project Thumbnail Mouseover)
something very blurry like
http://bureauborsche.com/projects
Best, Hugo
Blur effect
Hello Armin
I was wondering if there is a possibility to customize the blur effect (Project Thumbnail Mouseover)
something very blurry like
http://bureauborsche.com/projects
Best, Hugo
Sure!
In your custom css for desktop use:
.no-touchdevice .thumb:hover .ph, .touchdevice .thumb.hover .ph {
-webkit-filter: blur(15px);
-moz-filter: blur(15px);
-ms-filter: blur(15px);
-o-filter: blur(15px);
filter: blur(15px);
}
on mirko's website he is also using opacity: 0.8 for the hoverstate
Thank you Armin !