小窗口关闭影藏
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
position: relative;
width: 160px;
margin: 100px auto;
color: red;
border: 1px solid #cccccc;
display: block;
}
.box i {
position: absolute;
top: 0px;
left: -20px;
width: 16px;
height: 16px;
/* color: #cccccc; */
border: 1px solid #cccccc;
cursor: pointer;
color: #333333;
font-family: Arial, Helvetica, sans-serif;
}
.box img {
margin-top: 5px;
}
</style>
</head>
<body>
<div class="box">
<div>淘宝二维码</div>
<img src="../imgs/tao.png">
<i>X</i>
</div>
<script>
var i = document.querySelector('i');
var box = document.querySelector('.box')
i.onclick = function() {
box.style.display = 'none';
}
</script>
</body>