认真工作,天天向上

不断的学习,不断的总结

导航

跟随鼠标的图片放大效果

<div align=center style="overfow: hidden; width: 100px; height: 100px"><img src="http://www.davison.com.cn/images/Thinktank_Treehouse.jpg" width="100" height="100" border="0" onmouseover="show(this)" onmouseout="hide(this)">
</div>
<div align=center style="overfow: hidden; width: 100px; height: 100px">
<img src="http://www.davison.com.cn/images/bike_d.jpg" width="100" height="100" border="0" onmouseover="show(this)" onmouseout="hide(this)">
</div>
<div align=center style="overfow: hidden; width: 100px; height: 100px">
<img src="http://www.davison.com.cn/images/paxingdan_pp.jpg" width="100" height="100" border="0" onmouseover="show(this)" onmouseout="hide(this)">
</div>
<div id="enlarge_images" style="position: absolute; z-index:2"></div>

<SCRIPT>       
function show(_this) {
    document.getElementById("enlarge_images").innerHTML = "<img src='" + _this.src + "' >";
}
function hide(_this) {
    document.getElementById("enlarge_images").innerHTML = "";
}
function move_layer(event){
 event = event || window.event;
 enlarge_images.style.left=event.clientX+document.body.scrollLeft+10;
 enlarge_images.style.top=event.clientY+document.body.scrollTop+10;
}
document.onmousemove =move_layer;
</SCRIPT>

posted on 2007-09-25 08:53  MYOOP  阅读(508)  评论(4编辑  收藏  举报