JS实现鼠标移上去显示图片或微信二维码
废话不多说了,直接给大家贴代码了。
<html>
<head>
<scripttype="text/javascript">
functionshowImg(){
document.getElementById("wxImg").style.display='block';
}
functionhideImg(){
document.getElementById("wxImg").style.display='none';
}
</script>
</head>
<body>
<ahref="javascript:void(0)"onMouseOut="hideImg()"onmouseover="showImg()">测试</a>
<divid="wxImg"style="display:none;height:50px;back-ground:#f00;position:absolute;">这里是微信图片</div>
</body>
</html>
以上所述是小编给大家介绍的JS实现鼠标移上去显示图片或微信二维码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!