<!DOCTYPE html>
<html lang="en">
<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>
*{
margin: 0;
padding: 0;
}
#box{
width: 200px;
height: 50px;
background: yellow;
position: relative;
}
#box p {
width: 300px;
height: 200px;
background-color: red;
position: absolute;
left: 100px;
top: 100px;
display: none;
pointer-events: none;
}
</style>
</head>
<body>
<div id="box">
我的头像
<p>
我的介绍
</p>
</div>
<script>
box.onmouseover = function(){
this.firstElementChild.style.display = "block"
}
box.onmouseout = function(){
this.firstElementChild.style.display = "none"
}
box.onmousemove = function(evt){
this.firstElementChild.style.left = evt.offsetX + "px"
this.firstElementChild.style.top = evt.offsetY + "px"
}
</script>
</body>
</html>
04-06
1643

06-16
1982

03-08
1386
