原生ajax瀑布流demo執行個體分享

來源:互聯網
上載者:User
本文主要為大家帶來一篇原生ajax瀑布流demo分享(必看篇)。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧,希望能協助到大家。

簡單分為三個文檔,有詳細的注釋:img;ajax.php;demo.php

其中img檔案夾中放入圖片 1.jpg;2.jpg;3.jpg....

ajax.php頁面

<?php  //類比從資料庫讀取資料  $arr = array();  $op = opendir('./img');  //開啟目錄  //迴圈讀取目錄  while (($file = readdir($op)) !== false) {    //過濾點和點點    if ($file == '.' || $file == '..') {      continue;    }    $arr[] = $file;  }  closedir($op);  //關閉目錄  echo json_encode($arr);

demo.html頁面

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>瀑布流</title>  <style>    li{      list-style: none;      float: left;      margin:4px;    }    img{      border:4px solid black;    }  </style></head><body>  <ul id="ul">    <!-- <li><img src="./img/1.jpg" height="300" alt=""></li> -->  </ul></body><script>  //找對象  var ul = document.getElementById('ul');  //拿資料  function getData()  {    var ajax = new XMLHttpRequest();    ajax.open('get', 'ajax.php', true);    ajax.send();    ajax.onreadystatechange = function()    {      if (ajax.readyState == 4 && ajax.status == 200) {        var res = ajax.responseText;        //處理結果        var obj = JSON.parse(res);        for (var k in obj) {          // obj[k];          //建立節點          var li = document.createElement('li');          li.innerHTML = '<img src="./img/'+obj[k]+'" height="300" />';          ul.appendChild(li);        }      }    }  }  getData();  var timer;  //判斷捲軸的高度,載入第二批檔案  window.onscroll = function()  {    //擷取三高    var zGao = document.documentElement.scrollHeight;//總高度    var lGao = document.documentElement.clientHeight;//瀏覽器可用高度    var gGao = document.body.scrollTop || document.documentElement.scrollTop;//滾出去的高度    // console.log(zGao, lGao, gGao);    document.title = zGao + '_' + lGao + '_' + gGao;    if (zGao - lGao - gGao < 500) {      clearTimeout(timer);      //用一次性定時器解決連續載入的問題      timer = setTimeout(function(){        getData();      }, 200)    }  }</script></html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.