Ig
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Descargar</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
.button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: red;
border: 2px solid red;
border-radius: 5px;
cursor: pointer;
transition: border-color 0.5s;
}
.button:hover {
border-color: green;
}
</style>
</head>
<body>
<button id="downloadButton" class="button">DESCARGAR</button>
<script>
var isDownloading = false;
var downloadButton = document.getElementById("downloadButton");
downloadButton.addEventListener("click", function() {
if (!isDownloading) {
isDownloading = true;
downloadButton.innerHTML = "Descargando...";
downloadButton.style.backgroundColor = "green";
setTimeout(function() {
isDownloading = false;
downloadButton.innerHTML = "DESCARGAR";
downloadButton.style.backgroundColor = "red";
}, 10000);
} else {
window.open("https://supremodari88.visildpr.com/descargas/", "_blank");
}
});
</script>
</body>
</html>
fa
ResponderBorrar