The following is a site that offers the service of generating site thumbnails freely. You can use this one for your usage. Go through their site for learning more about its usage.
http://picoshot.com/
I've created a sample page that demonstrates its usage
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title> </title>
<script type="text/javascript">
var hoverMouse = function(url,flag,obj){
if(obj)
var leftTop = findPos(obj);
if(flag == 1){
document.getElementById('thumbnail').style.left = (leftTop[0]+150) + "px";
document.getElementById('thumbnail').style.top = leftTop[1] + "px";
document.getElementById('thumbnail').firstChild.src = 'http://image.picoshot.com/thumbnail.php?url=' + url;
document.getElementById('thumbnail').style.display = 'block';
}else
document.getElementById('thumbnail').style.display = 'none';
}
function findPos(obj) {
var curleft = curtop = 0;
if (obj.offsetParent) {
do {
curleft += obj.offsetLeft;
curtop += obj.offsetTop;
} while (obj = obj.offsetParent);
return [curleft,curtop];
}
}
</script>
<style type="text/css">
#thumbnail{
position: absolute;
left: 0;
top: 0;
display: none;
border: 1px solid #000;
width: 100px;
height:80px;
}
</style>
</head>
<body>
<div>
<div id="google" onmouseover="hoverMouse('http://www.google.com',1,this);" onmouseout="hoverMouse('',0,'');">Google </div><br/>
<div id="yahoo" onmouseover="hoverMouse('http://www.yahoo.com',1,this);" onmouseout="hoverMouse('',0,'');">Yahoo! </div><br/>
<div id="msn" onmouseover="hoverMouse('http://www.msn.com',1,this);" onmouseout="hoverMouse('',0,'');">MSN </div><br/>
<div id="yourpage" onmouseover="hoverMouse('http://www.geocities.com/omegareport/1930-1939.htm',1,this);" onmouseout="hoverMouse('',0,'');">Geocities - Your page </div><br/>
</div>
<div id="thumbnail"><img src="1.gif" border="0" width="100%" /></div>
</body>
</html>
Please note that this is just an example and can be improved for your purpose. After saving the source hover your mouse over the titles displayed on it and you can view a thumbnail associated with the title.
Bookmarks