No more nonsense, I will just post the code for you.
<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>
The above is the JS implementation introduced by the editor to display pictures or WeChat QR codes when the mouse is moved up. I hope it will be helpful to everyone. If If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank you all for your support of the PHP Chinese website!
For more JS implementation of moving the mouse up to display pictures or WeChat QR codes, please pay attention to the PHP Chinese website!