Something like that wouldn't be to hard to make, image rollovers are pie.
Code:
onMouseOver="this.src='newimage.jpg';"
onMouseOut="this.src='oldimage.jpg';"
And you can do something similar to what you are talking about with the text.
Code:
onMouseOver="this.src='newimage.jpg';document.getElementById("div").style.display='inline';"
onMouseOut="this.src='oldimage.jpg';document.getElementById("div").style.display='none';"
The complete HTML:
Code:
<img src="none" alt="image" onMouseOver="this.src='newimage.jpg';document.getElementById("div").style.display='inline';"
onMouseOut="this.src='oldimage.jpg';document.getElementById("div").style.display='none';">
<div id="div" style="display: none;">
info info info
</div>
They may have used better/more efficient coding, but that should get the job done. No I have never come across anything like that on DD. Let me know if this wasn't what you were talking about.
Tim
Bookmarks