Hello,
I have my photo galleries in OSGallery. I want to zoom out the image slightly on mouse hover and add a color overlay.
I can use the Dimas hover effect to zoom in.
A background color for the hover effect is also possible, but I need to specify an image mask for that. A mask that covers the entire image, leaving only the colored hover, isn't available. I'm forced to specify a mask like a star or an arrow, but I don't like that.
Is it possible to use the red background hover with a mask over the entire image? Can I make my own CSS adjustments for that?
Kind regards, Tromp Willem van Urk
In
OrdaSoft Joomla Gallert you may set:
- Hover effect (as you wrote)
- and image mask with background color(as you wrote)
so "Dimas hover effect " as I understand - good for you
and as mask you may set any as example "Bevel" and select you color
Next please in file
{your website}/components/com_osgallery/assets/css/os-gallery.css
find CSS:
| Code: |
.Bevel {
clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
|
and set you polygon for this class as example:
| Code: |
clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 0% 100%);
|
You may see your polygon with help any "clip-path polygon generator"
And may be best if you overredy CSS not in Gallery CSS file, better when you did this in Template CSS file
Regards
OrdaSoft team