想在首页放个微信二维码的图片。鼠标悬浮在小图上面的时候,二维码大图就会自动的显示出来。
鼠标放在图片上显示大图的JS代码
<script type="text/javascript">
//显示图片
function over(imgid,obj,imgbig)
{
//大图显示的最大尺寸 4比3的大小 400 300
maxwidth=100;
maxheight=100;
//显示
obj.style.display="";
imgbig.src=imgid.src;
//1、宽和高都超过了,看谁超过的多,谁超的多就将谁设置为最大值,其余策略按照2、3
//2、如果宽超过了并且高没有超,设置宽为最大值
//3、如果宽没超过并且高超过了,设置高为最大值
if(img.width>maxwidth&&img.height>maxheight)
{
pare=(img.width-maxwidth)-(img.height-maxheight);
if(pare>=0)
img.width=maxwidth;
else
img.height=maxheight;
}
else if(img.width>maxwidth&&img.height<=maxheight)
{
img.width=maxwidth;
}
else if(img.width<=maxwidth&&img.height>maxheight)
{
img.height=maxheight;
}
}
//隐藏图片
function out()
{
document.getElementById('divImage').style.display="none";
}
</script>
<img id="img" src="http://i.jiangyu.org/pic/icon_qrcode_green.png" onmouseover="over(img,divImage,imgbig);" onmouseout="out()" width="28" alt="手机扫描扫添加微信" height="28" />
<div id="divImage" style="display: none; left: 973px;top:43px; position: absolute">
<img id="imgbig" src="http://i.jiangyu.org/pic/weixin.png" width="100" alt="手机扫描扫添加微信" height="100"alt="手机扫描扫添加微信" />
</div>
评论