首页 > 编程 > JavaScript > 正文

一个跟随鼠标的图片放大效果,与FF兼容

2019-11-21 02:07:39
字体:
来源:转载
供稿:网友

<div align=center style="overfow: hidden; width: 100px; height: 100px"><img src="http://files.VeVB.COm/upload/2007426163751315.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://files.VeVB.COm/upload/200742616381460.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://files.VeVB.COm/upload/200742616383849.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>


[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表