<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Qrcode</title>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$(".module span.flag").hover(function() {
$("#qrcode").show(50);
}, function() {
$("#qrcode").hide();
});
});
</script>
<style>
/*突出显示气泡二维码*/
body {
background-color: #533C3C;
}
.module {
top:20px;
left: 20px;
width: 200px;
height: 200px;
position: relative;
}
/*二维码标记*/
.module .flag {
position: absolute;
left: 0px;
top: 50%;
cursor: pointer;
width: 16px;
height: 16px;
background-image: url(qrcode.png);
background-repeat: no-repeat;
background-size: cover;
display: inline-block;
margin-right: 10px;
vertical-align: middle;
}
#qrcode {