您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用JavaScript和jQuery實現瀑布流”,在日常操作中,相信很多人在怎么用JavaScript和jQuery實現瀑布流問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么用JavaScript和jQuery實現瀑布流”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
用JavaScript實現
基本結構:
<div id="main"> <div class="box"> <div class="pic"><img src="images/1.jpg" alt=""></div> </div> <div class="box"> <div class="pic"><img src="images/2.jpg" alt=""></div> </div> ... ... ... </div>
基本樣式:
*{ margin: 0px; padding: 0px; } #main{ position: relative; } .box{ padding: 15px 0 0 15px; float: left; } .pic{ padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-shadow: 0 0 5px #ccc; }
思路:
1、獲取#main下的所有.box
2、計算頁面中圖片有幾列,并設置頁面的寬度
3、找出這幾列中高度最小的列
4、從第二行開始,設置圖片為相對定位,把一張圖片放到高度最小列的下面
5、更新列的高度,重復3、4、5步驟,直至圖片加載完
6、根據最后一張圖片的位置確定是否繼續加載圖片(懶加載)
實現:
1、獲取#main下的所有.box
//將main下的所有class為box的元素取出來 var oParent = document.getElementById(parent); var oBox = getByClass(oParent,box);
// 根據class獲取元素 function getByClass(parent,clsname){ var arr = [];//用來存儲獲取到的所有class為box的元素 var oElement = parent.getElementsByTagName('*'); for(var i=0;i<oElement.length;i++){ if(oElement[i].className == clsname){ arr.push(oElement[i]); } } return arr; }
2、計算頁面中圖片有幾列,并設置頁面的寬度
//計算整個頁面顯示的列數(頁面寬/box的寬) var oBoxW = oBox[0].offsetWidth; var cols = Math.floor(document.documentElement.clientWidth/oBoxW); //設置main的寬 oParent.style.cssText = 'width:' + oBoxW*cols + 'px;margin:0 auto;';
3、找出這幾列中高度最小的列
4、從第二行開始,設置圖片為相對定位,把一張圖片放到高度最小列的下面
5、更新列的高度,重復3、4、5步驟,直至圖片加載完
//存儲每列的高度 var hArr = []; for(var i=0;i<oBox.length;i++){ if(i<cols){ //第一行圖片的高度 hArr.push(oBox[i].offsetHeight); }else{ var minH = Math.min.apply(null,hArr); var index = getMinIndex(hArr,minH); oBox[i].style.position = "absolute"; oBox[i].style.top = minH + 'px'; //oBox[i].style.left = oBoxW*index+'px'; oBox[i].style.left = oBox[index].offsetLeft + 'px'; //更新每列的高度 hArr[index] += oBox[i].offsetHeight; } }
//獲取每列高度最小的索引值 function getMinIndex(arr,value){ for(var i in arr){ if(arr[i] == value){ return i; } } }
6、根據最后一張圖片的位置確定是否繼續加載圖片(懶加載)
假設是后臺給的數據
//數據 var dataInt = {'data':[{'src':'1.jpg'},{'src':'2.jpg'},{'src':'3.jpg'},{'src':'4.jpg'}]};
當滾動條滾動時執行
//滾動條滾動時 window.onscroll = function(){ scrollSlide(dataInt); }
根據最后一張圖片的位置,來判斷是否進行加載
//判斷是否具有了滾條加載數據塊的條件 function checkScrollSlide(parent,clsname){ var oParent = document.getElementById(parent); var oBox = getByClass(oParent,clsname); var lastBoxH = oBox[oBox.length-1].offsetTop + Math.floor(oBox[oBox.length-1].offsetHeight/2); var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; var height = document.documentElement.clientHeight || document.body.clientHeight; return (lastBoxH < scrollTop + height)? true:false; }
加載圖片
//滾動條滾動時執行 function scrollSlide(dataInt){ ////判斷是否具有了滾條加載數據塊的條件 if(checkScrollSlide('main','box')){ var oParent = document.getElementById('main'); //將數據塊渲染到當前頁面的尾部 for(var i=0;i<dataInt.data.length;i++){ var oBoxs = document.createElement('div'); oBoxs.className = 'box'; oParent.appendChild(oBoxs); var oPic = document.createElement('div'); oPic.className = 'pic'; oBoxs.appendChild(oPic); var oImg = document.createElement('img'); oImg.src = 'images/' + dataInt.data[i].src; oPic.appendChild(oImg); } waterfall('main','box'); }
用jQurey實現
用jQuery實現的思路都是一樣的,就直接放代碼
$(window).on('load',function(){ waterfall(); var dataInt={'data':[{'src':'1.jpg'},{'src':'2.jpg'},{'src':'3.jpg'},{'src':'4.jpg'}]}; $(window).on('scroll',function(){ scrollSlide(dataInt); }) }); function waterfall(){ var $oBox = $('#main>div'); var oBoxW = $oBox.eq(0).outerWidth(); var cols = Math.floor($(window).width()/oBoxW); $('#main').css({ 'width' : cols * oBoxW, 'margin' : '0 auto' }); var hArr = []; $oBox.each(function(index,value){ var oBoxH = $oBox.eq(index).height(); if(index<cols){ hArr.push(oBoxH); }else{ var minH = Math.min.apply(null,hArr); var minHIndex = $.inArray(minH,hArr); $(value).css({ 'position' : 'absolute', 'top': minH + 15, 'left' : $oBox.eq( minHIndex ).position().left }); hArr[minHIndex] += $oBox.eq(index).height() + 15; } }); } function checkScrollSlide(){ var $lastBox = $('#main>div').last(); var lastBoxH = $lastBox.offset().top + Math.floor($lastBox.height()/2); var scrollTop = $(window).scrollTop(); var clientH = $(window).height(); return (lastBoxH < scrollTop + clientH) ? true : false; } function scrollSlide(dataInt){ if(checkScrollSlide()){ $.each(dataInt.data,function(index,value){ var $Box = $('<div>').addClass('box').appendTo('#main'); var $Pic = $('<div>').addClass('pic').appendTo($Box); $('<img>').attr('src','images/' + $(value).attr('src')).appendTo($Pic); }) waterfall(); } }
到此,關于“怎么用JavaScript和jQuery實現瀑布流”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。