Image Thumbnail Viewer II
and
Image Thumbnail Viewer
Some configuration required. For the Image Thumbnail Viewer II, lay out the:
HTML Code:
<div id="dynloadarea" style="width:80px;height:225px"></div>
above your thumbnails on the page.
For the Image Thumbnail Viewer, configure the coordinates for the pop up division to a set location of your choosing:
Find these two lines in the script:
Code:
crossobj.style.left=horzpos+"px"
crossobj.style.top=vertpos+"px"
and set them to the desired location, ex:
Code:
crossobj.style.left="250px"
crossobj.style.top="200px"
and use the syntax without the center and dimensions in your HTML but set it to onmouseover (from the demo[sic]):
HTML Code:
<a href="photo1.jpg" onmouseover="return enlarge('photo1.jpg',event)" onclick="return false;">
<img src="thumbnail.gif" border="0"></a>
Bookmarks