圖片懶載入外掛echo.js分享

antzone發表於2017-04-12

本章節分享一個圖片懶載入外掛echo.js。

下面是一個簡單的程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<img src="./images/loading.gif" data-echo="./images/meinv.jpg" width="800" height="800" alt="">
<img src="./images/loading.gif" data-echo="./images/meinv.jpg" width="800" height="800" alt="">
<img src="./images/loading.gif" data-echo="./images/meinv.jpg" width="800" height="800" alt="">
<img src="./images/loading.gif" data-echo="./images/meinv.jpg" width="800" height="800" alt="">
<img src="./images/loading.gif" data-echo="./images/meinv.jpg" width="800" height="800" alt="">
<script src="./echo.js"></script>
<script>
window.onload = function () {
  Echo.init({
    offset: 200, //設定圖片距離可視區域多少畫素被載入(縱向)
    throttle: 1050  //設定圖片延遲載入的時間
  });
}
</script>
</body>
</html>

關於外掛的下載,可以自行在網上搜尋最新版本。

相關文章