Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ตัวอย่าง JavaScript สำหรับจับตำแหน่งเมาส์หลังจากทุกช่วงเวลาที่กำหนด


ในการจับตำแหน่งเมาส์หลังจากทุกช่วงที่กำหนด โค้ดจะเป็นดังนี้ ต่อไปนี้เป็นรหัสสำหรับจับตำแหน่งเมาส์ -

ตัวอย่าง

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.result {
   font-size: 18px;
   font-weight: 500;
   color: blueviolet;
}
</style>
</head>
<body>
<h1>Capture mouse position after every given interval</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to start capturing mouse position every 3 seconds</h3>
<script>
let resultEle = document.querySelector(".result");
let check;
let xCoord, yCoord;
document.body.addEventListener("mousemove", function (event) {
   xCoord = event.clientX;
   yCoord = event.clientY;
});
function displayCoordinate(element) {
   resultEle.innerHTML =
   "X coordinate = " + xCoord + "<br> Y coordinate = " + yCoord;
}
document.querySelector(".Btn").addEventListener("click", () => {
   setInterval(displayCoordinate, 3000);
});
</script>
</body>
</html>

ผลลัพธ์

ตัวอย่าง JavaScript สำหรับจับตำแหน่งเมาส์หลังจากทุกช่วงเวลาที่กำหนด

เมื่อคลิกปุ่ม "คลิกที่นี่" ตำแหน่งเมาส์จะถูกจับทุก 3 วินาที -

ตัวอย่าง JavaScript สำหรับจับตำแหน่งเมาส์หลังจากทุกช่วงเวลาที่กำหนด