js實現酷炫倒計時動畫

本文實例為大傢分享瞭js實現酷炫倒計時動畫的具體代碼,供大傢參考,具體內容如下

前段時間和朋友去音樂餐廳吃飯,中間有個活動,然後看到他們軟件公眾號H5有個活動開始的倒計時的動畫效果,於是想瞭下實現思路。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>js實現酷炫倒計時動畫效果</title>
    <style>
      *{margin:0;padding:0;}
      body{width:100%;height:100%;overflow:hidden;}
      .box{width:1000px;height:700px;margin:100px auto;}
      .btn{width:100px;height:100px;margin:50px auto 0;font-size:16px;color:#fff;text-align:center;line-height:100px;border-radius:100px;background:#3385ff;}
      .btn:hover{box-shadow: 0 0 10px #77aeff;cursor:pointer;}
      h1{font-size:300px;color:red;text-align:center;}
      h1.active{animation:count .5s;}
      @keyframes count {
        from {
          transform: scale(.1);
          opacity: 1;
        }
        to {
          transform: scale(3.5);
          opacity: 0;
          display:none;
        }
      }
    </style>
</head>
<body>
  <div class="btn">倒計時</div>
  <div class="box">
    <h1 style="display:none;">10</h1>
  </div>
</body>
<script>
  let NUMBER = 1;
  let COUNT = 10;
  let COLORS = ['#8c00ff', '#006bff', '#4fff00', '#ffb800', '#ff0000'];
  let timer = null;
  function $(str) {
    return document.querySelector(str);
  }
  function actionNum () {
    let h1 = $('h1');
    $('h1').style.display = 'block';
    timer = setInterval(() => {
      COUNT--;
      NUMBER++;
      if (COUNT >= 0) {
        h1.classList.remove('active');
        setTimeout(() => {
          let num = Math.floor(Math.random()*5);
          h1.innerText = COUNT;
          h1.style.color = COLORS[num];
          h1.classList.add('active');
        }, 100);
      } else {
        clearInterval(timer);
      }
    }, 1000);
  }
  $('.btn').onclick = function () {
    if (COUNT < 0) {
      COUNT = 11;
    }
    actionNum();
  };
</script>
</html>

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: