Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Nice Image Hover Effect Re: Nice Image Hover Effect

#115246
Paulie_D
Member

Here is the general idea but please bear in mind that improvement can always be made.

See, you’ve wrapped in a div which isn’t really necessary as a figure is just a div with a ‘specific’ function and so acts the same.

So, once I’ve defined the width & height I just set a positioning context (relative).

Then, since the figcaption is inside the figure, I can apply absolute positioning (top:0) and it’s automatically aligned. Granted you have to make it the same size as the image but having set specific dimensions on the figure and overflow:hidden it won’t matter.

Then set the opacity to ‘0’ as you did and transition that on hover.

You can make sure that the cursor can see through the figcaption to the underlying link by using the ‘pointer-events’ property and so you don’t need to link the figcaption text at all.

Whew.

Is it perfect? Nope, and we’re not exactly using the figure element in the way it’s supposed to be used but you could replace the figure & figcaption with divs and it would still work..you’d just need a couple of extra classes.