Speed Test Checker
Speed Test Checker
Your speed test result will appear here.
body {
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.speed-test {
margin-top: 20px;
}
document.getElementById("start-button").addEventListener("click", async function() {
const resultElement = document.getElementById("result");
resultElement.textContent = "Running speed test...";
const speedtest = new Speedtest();
speedtest.onupdate = (data) => {
resultElement.innerHTML = `
Download Speed: ${data.download / 1024 / 1024} Mbps
Upload Speed: ${data.upload / 1024 / 1024} Mbps
`;
};
await speedtest.start();
Comments
Post a Comment