Coming Soon

 <button class="sp-download-btn" onclick="startDownload()">Download Now</button>


<div id="downloadPopup" class="download-popup-overlay">

  <div class="download-popup-content">

    <h3>Please Wait...</h3>

    <p>Your download will start in</p>

    <div id="timer" class="timer-circle">5</div>

    <p>seconds</p>

  </div>

</div>


<script>

function startDownload() {

  // আপনার ফাইল লিঙ্ক এখানে দিন

  const downloadUrl = "YOUR_FILE_URL_HERE"; 

  

  const popup = document.getElementById("downloadPopup");

  const timerDisplay = document.getElementById("timer");

  let timeLeft = 5;


  // পপআপ দেখানো

  popup.style.display = "flex";


  // টাইমার শুরু

  const countdown = setInterval(function() {

    timeLeft--;

    timerDisplay.textContent = timeLeft;


    if (timeLeft <= 0) {

      clearInterval(countdown);

      // পপআপ বন্ধ করা

      popup.style.display = "none";

      // ডাউনলোড শুরু

      window.location.href = downloadUrl;

      // টাইমার রিসেট (পরের বার ক্লিকের জন্য)

      timerDisplay.textContent =

 "5";

    }

  }, 1000);

}

</script>

Post a Comment

0 Comments