HTML&JS鼠标移上去显示图片或微信二维码
效果
image.png
代码
<html>
<head>
<script type="text/javascript">
function showImg(){
document.getElementById("wxImg").style.display='block';
}
function hideImg(){
document.getElementById("wxImg").style.display='none';
}
</script>
</head>
<body>
<a href="javascript:void(0)" onMouseOut="hideImg()" onmouseover="showImg()">测试</a>
<div id="wxImg" style="display:none;height:50px;back-ground:#f00;position:absolute;">这里是微信图片</div>
</body>
</html>
参考
https://zhidao.baidu.com/question/1706317969604496140.html
本文标题:HTML&JS鼠标移上去显示图片或微信二维码
本文链接:https://www.haomeiwen.com/subject/mqhunxtx.html
网友评论