I have some <img>
, like a gallery and a <span>
tag below.
What I am trying to achieve is when I hover over one image to show some specific text on the same place each time. I have no idea how to do this one, even if it sounds simple!
Example
<img src="1">
<img src="2">
<img src="3">
<img src="4">
<span><span>
when I hover over img 1, I want the <span>
to be like
<span> caption for img 1 </span>
when i hover over img 2,
<span> caption for img 2 </span>
...and so on