美文网首页
HTML&JS鼠标移上去显示图片或微信二维码

HTML&JS鼠标移上去显示图片或微信二维码

作者: linghugoogle | 来源:发表于2018-01-06 20:36 被阅读10次

效果

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