ЗАПУСТИТЬ КОД НА ПОЛНОЙ СТРАНИЦЕ
Наконец сделал это -: Я использовал положение мыши в качестве положения изображений, чтобы они перемещались вместе с курсором. выравнивание сверху или снизу, которое, я думаю, вы добавите с помощью z-index. Или, если хотите, можете узнать здесь - https://www.w3schools.com/jsref/prop_style_zindex.asp. Мой код был следующим: вам просто нужно изменить фон изображения (div) на ваш wi sh. Надеюсь, это был тот код, которого вы ожидали .. Спасибо
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<style>
*{
margin: 0;
padding: 0;
}
.text1,.text2,.text3{
position: relative;
margin: 0px 100px;
background-color: red;
width: 100px;
height: 200px;
}
.text2{
background-color: yellow;
}
.text3{
background-color: lawngreen;
}
.text1{
margin-top: 100px;
}
.image1{
position: absolute;
width: 300px;
height: 300px;
background: green;
border-radius: 50%;
display: none;
transition: 0.5s linear;
}
.image2{
position: absolute;
width: 300px;
height: 300px;
background: red;
display: none;
transition: 0.5s linear;
border-radius: 50%;
}
.image3{
position: absolute;
width: 300px;
height: 300px;
background: blue;
display: none;
transition: 0.5s linear;
border-radius: 50%;
}
</style>
<div class="text1" id="focusArea" onmouseover='display()'onmousemove="getPos(event)" onmouseout="stopTracking()"><span>This is text 1.</span></div>
<div class="text2" id="focusArea2" onmouseover='display()'onmousemove="getPos2(event)" onmouseout="stopTracking2()"><span>This is text 2.</span></div>
<div class="text3" id="focusArea3" onmouseover='display()'onmousemove="getPos3(event)" onmouseout="stopTracking3()"><span>This is text 3.</span></div>
<div class="image1" id="image1"></div>
<div class="image2" id="image2"></div>
<div class="image3" id="image3"></div>
<p id="displayArea"></p>
<p id="displayArea2"></p>
<p id="displayArea3"></p>
<script>
function getPos(e){
x=e.clientX;
y=e.clientY;
cursor="Your Mouse Position Is : " + x + " and " + y ;
document.getElementById("displayArea").innerHTML=cursor;
document.getElementById('image1').style.display='block';
document.getElementById('image1').style.top=y-50+'px';
document.getElementById('image1').style.left=x+100+'px';
}
function stopTracking(){
document.getElementById("displayArea").innerHTML="";
document.getElementById('image1').style.display='none';
}
function getPos2(e){
a=e.clientX;
b=e.clientY;
cursor2="Your Mouse Position Is : " + a + " and " + b ;
document.getElementById("displayArea2").innerHTML=cursor2;
document.getElementById('image2').style.display='block';
document.getElementById('image2').style.top=b-50+'px';
document.getElementById('image2').style.left=a+100+'px';
}
function stopTracking2(){
document.getElementById("displayArea2").innerHTML="";
document.getElementById('image2').style.display='none';
}
function getPos3(e){
u=e.clientX;
v=e.clientY;
cursor3="Your Mouse Position Is : " + u + " and " + v ;
document.getElementById("displayArea3").innerHTML=cursor3;
document.getElementById('image3').style.display='block';
document.getElementById('image3').style.top=v-50+'px';
document.getElementById('image3').style.left=u+100+'px';
}
function stopTracking3(){
document.getElementById("displayArea3").innerHTML="";
document.getElementById('image3').style.display='none';
}
</script>
</body>
</html>