How To Display Text Over Image
I want to display text over image. Whenever someone hover mouse over the image. My Div block is:
).mouseover(function(){
$('#hoverDiv1').css('opacity', 1)
});
$('#hover1').mouseout(function(){
$('#hoverDiv1').css('opacity', 0)
});
Please see this Fiddle
Hover effect is not correctly positioned, because "li" needs to be defined. It is just to show an easy jQuery way.
Best
Post a Comment for "How To Display Text Over Image"