How to Add Download Timer Button in Blogger & WordPress

The download timer button in Blogger and WordPress. How to add Blogger and WordPress download timer button, all of this. So keep reading the post until the end for details. Before using download timer on Blogger, we didn't know about this download timer.
Download Timer Button in Blogger & WordPress


What is download timer?

The time that is calculated before downloading anything. That's what we call download timer.

Why use Blogger and WordPress download timer?

You can use this download timer if you are blogging or if you have a downloading blog. In this case the visitor will remain on your blog until the download process. As a result, you get more views and more wasted time. So use this download timer to earn a good amount.

Timer script feature :

The download timer I mentioned earlier is a script that starts redirecting and downloads as the timer expires. But
Today I have come up with a new script that will see the download button as time expires. Then your download will start after clicking. The script I mentioned earlier was only working on the Blogger site. But this new script can use the script very easily in blogger and WordPress site. This download timer was created by HTML and JavaScript code.

How to use Download Timer?


Below I have explained all these steps in detail. Which allows you to easily use this download timer code. So follow the steps below.

Step 1 - First of all you have to download this download timer script. Download From Below
  
Step 2 - Now copy this code and paste it anywhere on the page or post.

Step 3 - Now place your download link or copy code in place of

[https://drive.google.com/file/d/1kBnNeaTJUWbjzP-cnjbgBxxv9v9M7UR1/view?usp=drivesdk].


Copy This Code 👇👇

 <div dir="ltr" style="text-align: left;" trbidi="on">

<body>

<center>

<span id="countdown"><h1>You have to wait 15 seconds.</h1></span></center>

<br />

<div style="text-align: center;">

<b>Download Now</b><br />

<a href="#" id="download_link" style="display: none;"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrR2pbe9IaLg1VqLkqKo3ItdPWh9dLfP1CJSZ_9jNCCm1qf9xj4NmWIdVfbDD1bX-ft20TT4vuxyUfAi7q8_GXnypQryWQJwxiPya0E_PuHNGRfKYB4Bs0xohyCTImCzLVSVANUwh8LXk/s1600/but.jpg" /></a>

<noscript>JavaScript needs to be enabled in order to be able to download.</noscript>

<script type="application/javascript">

(function(){

   var message = "%d seconds before download link appears";

   // seconds before download link becomes visible

   var count = 15;

   var countdown_element = document.getElementById("countdown");

   var download_link = document.getElementById("download_link");

   var timer = setInterval(function(){

      // if countdown equals 0, the next condition will evaluate to false and the else-construct will be executed

      if (count) {

          // display text

          countdown_element.innerHTML = "You have to wait %d seconds.".replace("%d", count);

          // decrease counter

          count--;

      } else {

          // stop timer

          clearInterval(timer);

          // hide countdown

          countdown_element.style.display = "none";

          // show download link

          download_link.style.display = "";

      }

   }, 1000);

})();

</script>

</div>

</body></div>




Step 4 - And if you want to spend less time on it, you can easily change it. If you want to change var        count = 15; Here you can talk less.

Step 5 - Your download timer job has now been successfully completed.

The download timer script must tell you how you like it in the comment box. And share if you like


You have to wait 15 seconds.


Download Now

Learn More



Post a Comment

0 Comments