91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JS動畫實現回調地獄promise的實例代碼詳解

發布時間:2020-09-10 18:46:50 來源:腳本之家 閱讀:147 作者:Wayne Zhu 欄目:web開發

1. js實現動畫

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>animate</title>
  <style>
    .ball {
      width: 40px;
      height: 40px;
      margin-bottom: 5px;
      border-radius: 20px;
    }
    .ball1 {
      background: red;
    }
    .ball2 {
      background: blue;
    }
    .ball3 {
      background: yellow;
    }
  </style>
</head>
<body>
  <div class="ball ball1" ></div>
  <div class="ball ball2" ></div>
  <div class="ball ball3" ></div>
  <script>
    var ball1 = document.querySelector(".ball1");
    var ball2 = document.querySelector(".ball2");
    var ball3 = document.querySelector(".ball3");
    function animate(ball, left, callback) {
      setTimeout(function () {
        var marginLeft = parseInt(ball.style.marginLeft, 10);
        if (marginLeft === left) {
          callback && callback();
        } else {
          if (marginLeft < left) {
            marginLeft += 2;
          } else {
            marginLeft -= 2;
          }
          ball.style.marginLeft = marginLeft + "px";
          animate(ball, left, callback);
        }
      }, 13);
    }
    animate(ball1, 100, function () {
      animate(ball2, 200, function () {
        animate(ball3, 300, function () {
          animate(ball1, 200, function () {
            animate(ball3, 200, function () {
              animate(ball2, 180, function () {
                animate(ball2, 220, function () {
                  animate(ball2, 200, function () {
                    console.log("over");
                  })
                })
              })
            })
          })
        }) 
      })
    });
  </script>
</body>
</html>

上述代碼就可以實現一個動畫。注意下面幾點:

•動畫的實現往往依賴于setTimeout。
•注意ele.style.marginLeft如果開始能夠獲取,必須從元素的style中設置了才能獲取,否則獲取不到。
•利用callback可以實現雖然使用了setTimeout還能串行執行。

但是這產生了回調地獄,代碼簡單點還好說,一旦代碼復雜了,我們將很難處理其中的邏輯。所以這時就可以用到es6中的promise了。

Promise的寫法如下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>animate</title>
  <style>
    .ball {
      width: 40px;
      height: 40px;
      margin-bottom: 5px;
      border-radius: 20px;
    }
    .ball1 {
      background: red;
    }
    .ball2 {
      background: blue;
    }
    .ball3 {
      background: yellow;
    }
  </style>
</head>
<body>
  <div class="ball ball1" ></div>
  <div class="ball ball2" ></div>
  <div class="ball ball3" ></div>
  <script>
    var ball1 = document.querySelector(".ball1");
    var ball2 = document.querySelector(".ball2");
    var ball3 = document.querySelector(".ball3");
    function promiseAnimate(ball, left) {
      return new Promise(function (resolve, reject) {
        function animate(ball, left) {
          setTimeout(function () {
            var marginLeft = parseInt(ball.style.marginLeft, 10);
            if (marginLeft === left) {
              resolve();
            } else {
              if (marginLeft < left) {
                marginLeft += 2;
              } else {
                marginLeft -= 2;
              }
              ball.style.marginLeft = marginLeft + "px";
              animate(ball, left);
            }
          }, 13);
        }
        animate(ball,left);
      });
    }
    promiseAnimate(ball1, 500)
    .then(function () {
      return promiseAnimate(ball2, 200);
    })
    .then(function () {
      return promiseAnimate(ball3, 300);
    })
    .then(function () {
      return promiseAnimate(ball1, 200);
    })
    .then(function () {
      return promiseAnimate(ball3, 200);
    })
    .then(function () {
      return promiseAnimate(ball2, 180);
    })
    .then(function () {
      return promiseAnimate(ball2, 220);
    })
    .then(function () {
      return promiseAnimate(ball2, 200);
    })
  </script>
</body>
</html>

這同樣可以達到效果,并且這樣做的好處是,修改更加容易一些。對于promise,有幾點需要注意:

1.在執行promise相關函數的時候,要返回一個promise對象,這是常用的做法。
2.只有返回了promise對象,我們才能實用then。
3.并且在then中還要返回promise對象,這樣我們就可以不斷的使用then()來管理異步。
4.在promise執行之后,要使用resolve()來表明這個promise執行的結束。 這樣,才能執行then方法。

問題: 在then中如果直接執行promiseAnimate(ball2, 200);不可以嗎?  為什么一定要return呢?

答: 當然不可以,因為如果直接執行,確實返回了一個promise對象,但是這個promise對象只是在then下面的函數中啊, 我們必須在這個函數繼續返回這個promise對象才能達到繼續使用then的目的。

其中resolve()代表著這個異步過程的結束。

綜上所述: 動畫多用setTimeout和調用自己的方式執行,當然,使用setInterval也是一樣的,只是前者我們更為推薦。 無論是使用setTimeout還是setInterval,都不可避免的會產生如果解決異步的問題。 之前我們解決異步的方式是使用回調函數,但是回調函數非常容易就會產生回調地獄,所以用promise會更好一些。

總結

以上所述是小編給大家介紹的JS動畫實現回調地獄promise的實例代碼詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扬中市| 建德市| 五家渠市| 红桥区| 那坡县| 中阳县| 安阳市| 长海县| 山阴县| 红原县| 洪泽县| 读书| 揭西县| 河源市| 中方县| 闸北区| 成都市| 蓬溪县| 普宁市| 防城港市| 增城市| 二手房| 林周县| 余庆县| 汝城县| 安化县| 南靖县| 浙江省| 泗洪县| 正定县| 岚皋县| 太和县| 库伦旗| 辽阳县| 富顺县| 岳阳县| 宝山区| 西林县| 锦屏县| 东光县| 婺源县|