This is a comment:
Code:
/********************************************************
Create a div with transparent place holder in your html
<div id="Book" style="position:relative">
<img src="placeholder.gif" width="144" height="227" title="{Paused: please move mouse pointer away from graphic to continue">
</div>
width = 2*book image width +4 height = book image height+2
Insert onload in body tag
<body onload="ImageBook()">
*********************************************************/
This is where I said to put it (at the end):
Code:
<div id="Book" style="position:relative; visibility: inherit;"><img src="../images/placeholder.gif" alt="Please move your mouse pointer away from this graphic to activate animation." width="10" height="10">
</div>
I see you've tried to cover all bases however, the alt attribute is often only used when no image is available and has no effect on tags other than image tags. Moreover, I said, if that doesn't work (it won't, I just discovered) use it for the division tag. You've added 'visibility:inherit' to it. I don't think it needs that. Anyways, this works here (use at the end of the script, not in the comment area):
Code:
<div id="Book" style="position:relative;" title="{PAUSED} - to restart, move mouse away from images">
<img src="placeholder.gif" width="144" height="227">
</div>
Bookmarks