現在很多網站都會使用瀑布流的一個效果,什么是瀑布流呢,用在哪些地方呢?

大概就是這樣的一個效果,一般用於無法保證圖片大小的網站。
先看下布局+css
1 .cont{margin: 0 auto;position: relative;}
2 .box{float: left;padding: 6px} 3 .imgbox{border: solid 1px black;border-radius: 6px;padding: 6px} 4 .imgbox img{width:200px;display: block;} 5 6 7 <div class="cont"> 8 <div class="box"> 9 <div class="imgbox"> 10 <img src="images/4.jpg" alt=""> 11 </div> 12 </div> 13 </div>
實現的一個大概思路:
瀑布流:第一行正常浮動,從第二行開始,每個元素都定位到上一行的最小高度的元素下
1.獲取元素
2.布局
3.區分第一行和后面的行
4.在第一行,找到第一行所有的高度
5.在后面的行,找到最小高度
設置定位,left,top
6.修改之前的最小高度
思路就是這樣,這里的難點在於找到第一行和最小高度;將思路列出就會很清晰的知道自己要做些什么;所以還是比較推薦用面向對象去寫,后續的使用會更多。可以用這些小案例來練手,增加熟練度。
1 function Waterfall(){ 2 // 1.獲取元素 3 this.ocont = document.querySelector(".cont"); 4 this.abox = document.querySelectorAll(".box"); 5 6 // 將來准備存放第一行元素所有高度的數組 7 this.heightArr = []; 8 9 // 2.布局 10 this.init() 11 } 12 Waterfall.prototype.init = function(){ 13 // 布局 14 this.num = Math.floor(document.documentElement.clientWidth / this.abox[0].offsetWidth) 15 16 this.ocont.style.width = this.num * this.abox[0].offsetWidth + "px"; 17 // 3.區分第一行 18 this.firstLine(); 19 // 和后面的行 20 this.otherLine(); 21 } 22 Waterfall.prototype.firstLine = function(){ 23 // 4.在第一行,找到第一行所有的高度 24 for(var i=0;i<this.num;i++){ 25 this.heightArr.push(this.abox[i].offsetHeight) 26 } 27 } 28 Waterfall.prototype.otherLine = function(){ 29 // 5.在后面的行,找到最小高度 30 for(var i=this.num;i<this.abox.length;i++){ 31 var min = getMin(this.heightArr); 32 var minIndex = this.heightArr.indexOf(min); 33 // 設置定位,left,top 34 this.abox[i].style.position = "absolute"; 35 this.abox[i].style.top = min + "px"; 36 this.abox[i].style.left = minIndex * this.abox[0].offsetWidth + "px"; 37 // 6.修改之前的最小高度 38 this.heightArr[minIndex] += this.abox[i].offsetHeight; 39 } 40 } 41 42 function getMin(arr){ 43 // 注意數組的深淺拷貝:深拷貝 44 var myarr = []; 45 arr.forEach(val => { 46 myarr.push(val); 47 }); 48 return myarr.sort((a,b)=>a-b)[0]; 49 }
還有一個無限加載的小功能,我簡單說下思路吧,可以自己寫寫看!
W1.准備數據--->自己模擬數組,假裝后台給的
W2-0.綁定滾動事件
W2.找到頁面是否到底--->可視區域的高度+滾走的距離 >= 總高度-100(數值自己感受)
W3.渲染頁面
W4.生效瀑布流布局
思路就是這樣,有疑問可以找我哈!加油沖吧!
