javascript实现瀑布流自适应遇到的问题及解决方案

作者:hebedich 时间:2024-04-16 10:35:23 

这几天看了Amy老师的用javascript实现瀑布流,我跟着把代码敲出来。发现这样写只能第一次载入时适应屏幕,以后改变窗口大小就不能做到自适应了。

于是我想到了用window.onresize来使得瀑布流函数从新加载来达到目的,


window.onload=function(){
    //瀑布流函数
    waterfall('content','box');
    //模拟数据加载
    var dataInt = {"data":[{"src":"01.jpg"},{"src":"02.jpg"},{"src":"03.jpg"},{"src":"04.jpg"},{"src":"05.jpg"},{"src":"06.jpg"},{"src":"07.jpg"}]}
    //当屏幕大小改变时从新执行瀑布流函数 达到从新适应的作用
    window.onresize=function(){
//      waterfall('content','box');
       setTimeout(function() {waterfall('content','box');}, 200);
    }
    window.onscroll=function(){
        if(checkScroll()){
            var oparent = document.getElementById('content');
            //将熏染的数据添加入html中
            for(var i=0;i<dataInt.data.length;i++){
                var obox = document.createElement("div");
                obox.className = "box";
                oparent.appendChild(obox);
                var opic = document.createElement("div");
                opic.className = "pic";
                obox.appendChild(opic);
                var oImg = document.createElement("img");
                oImg.src="img/"+dataInt.data[i].src;
                opic.appendChild(oImg);
            }
                waterfall('content','box');
        }
    }
}

当屏幕缩小时是可以的,但是从缩小的放大就出现了BUG

javascript实现瀑布流自适应遇到的问题及解决方案

看没看到后面几列的顶部回不来了,
于是我打开开发工具看是怎么回事,

javascript实现瀑布流自适应遇到的问题及解决方案

第3 4 5个div中不应该有style,是因为缩小的时候给他添加上去的,而放大了他没有清除所以保留下来了就会出现这个样子于是:我在瀑布流函数里加了句aBox[i].style.cssText ='';使得每次进来都清空style


function waterfall(parent,box){
    //将content下所有class box取出来
    var aParent = document.getElementById(parent);
    var aBox = getBclass(aParent,box);
    //获取盒子的宽度
    var aBoxW = aBox[0].offsetWidth;
    //用浏览器的可是宽度除以box宽度 得到列数
    var cols = Math.floor(document.documentElement.clientWidth/aBoxW);
    //设定 content的宽度 和居中
    aParent.style.cssText = 'width:'+aBoxW*cols+'px;height:auto;position: relative; margin:0 auto;padding-right:15px';
    //创建每一列的高度数组
    var hArr=[];
    for(var i=0; i<aBox.length;i++){
        aBox[i].style.cssText ='';
        if(i<cols){
            hArr.push(aBox[i].offsetHeight);
        }else{
            var minH = Math.min.apply(null,hArr);
            var index = getMinIndex(hArr,minH);  //找出高最矮的 索引值
            //console.log(aBoxW);
            aBox[i].style.position = 'absolute';
            aBox[i].style.top = minH+'px';
            aBox[i].style.left = aBoxW*index+'px';
            hArr[index]+=aBox[i].offsetHeight;
        }
    }
}

这样就解决了缩小后回不来的BUG,可以正常自适应了

javascript实现瀑布流自适应遇到的问题及解决方案

最后我把整个的javascript 贴出来


window.onload=function(){
    //瀑布流函数
    waterfall('content','box');
    //模拟数据加载
    var dataInt = {"data":[{"src":"01.jpg"},{"src":"02.jpg"},{"src":"03.jpg"},{"src":"04.jpg"},{"src":"05.jpg"},{"src":"06.jpg"},{"src":"07.jpg"}]}
    //当屏幕大小改变时从新执行瀑布流函数 达到从新适应的作用
    window.onresize=function(){
//      waterfall('content','box');
       setTimeout(function() {waterfall('content','box');}, 200);
    }
    window.onscroll=function(){
        if(checkScroll()){
            var oparent = document.getElementById('content');
            //将熏染的数据添加入html中
            for(var i=0;i<dataInt.data.length;i++){
                var obox = document.createElement("div");
                obox.className = "box";
                oparent.appendChild(obox);
                var opic = document.createElement("div");
                opic.className = "pic";
                obox.appendChild(opic);
                var oImg = document.createElement("img");
                oImg.src="img/"+dataInt.data[i].src;
                opic.appendChild(oImg);
            }
                waterfall('content','box');
        }
    }
 
}
function waterfall(parent,box){
    //将content下所有class box取出来
    var aParent = document.getElementById(parent);
    var aBox = getBclass(aParent,box);
    
    //获取盒子的宽度
    var aBoxW = aBox[0].offsetWidth;
    //用浏览器的可是宽度除以box宽度 得到列数
    var cols = Math.floor(document.documentElement.clientWidth/aBoxW);
    //设定 content的宽度 和居中
    aParent.style.cssText = 'width:'+aBoxW*cols+'px;height:auto;position: relative; margin:0 auto;padding-right:15px';
    //创建每一列的高度数组
    var hArr=[];
    for(var i=0; i<aBox.length;i++){
        aBox[i].style.cssText ='';
        if(i<cols){
            hArr.push(aBox[i].offsetHeight);
        }else{
            var minH = Math.min.apply(null,hArr);
            var index = getMinIndex(hArr,minH);  //找出高最矮的 索引值
            //console.log(aBoxW);
            aBox[i].style.position = 'absolute';
            aBox[i].style.top = minH+'px';
            aBox[i].style.left = aBoxW*index+'px';
            hArr[index]+=aBox[i].offsetHeight;
        }
    }
}
//根据class获取到元素
function getBclass(parent,className){
    var boxarr = new Array(); //用来存储获取到的class
        //console.log(parent.prototype);
    allElement=parent.getElementsByTagName('*');
    for(var i=0;i<allElement.length;i++){
        if(allElement[i].className == className){
            boxarr.push(allElement[i]);
        }
    }
    return boxarr;
}
 
//找出高最矮的 索引值
function getMinIndex(arr,value){
    for(var i in arr){
        if (arr[i]==value){
            return i;
        }
    }
}
//建立一个检测轮轮滑动是否成立的函数  返回真假
function checkScroll(){
    var oparent = document.getElementById("content");
    var oBox = getBclass(oparent,'box');
    var lastoBoxTop = oBox[oBox.length-1].offsetTop+Math.floor(oBox[oBox.length-1].offsetHeight/2);
    //console.log(lastoBoxTop);
    var scrollTop = document.body.scrollTop||document.documentElement.scrollTop;
    var height = document.body.clientHeight||document.documentElement.clientHeight;
    //console.log(scrollTop);
    return(lastoBoxTop<scrollTop+height)?true:false;
}

css文件贴出来


*{margin: 0;padding: 0;}
body{background-color: #eee;}
.content{
    position: relative;
    }
.box{
    padding: 15px 0 0 15px;
    float: left;
}
.pic{
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px #CCCCCC;
    border-radius: 5px;
    background: #fff;
}
.pic img{
    width: 220px;
    height: auto;
    border: 1px solid #eee;
}

html文件贴出来


<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>javascript瀑布流</title>
        <link rel="stylesheet" type="text/css" href="css/pubuli.css"/>
        <script type="text/javascript" src="js/my.js" ></script>
    </head>
    <body>
        <div id="content">
            <div class="box">
                <div class="pic">
                <img src="img/01.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/02.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/03.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/04.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/05.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/06.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/07.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/08.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/09.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/10.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/11.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/12.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/13.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/14.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/15.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/16.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/17.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/18.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/19.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/20.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/21.jpg"/>
                </div>
            </div>
            <div class="box">
                <div class="pic">
                <img src="img/22.jpg"/>
                </div>
            </div>
        </div>
        
    </body>
</html>

好了谢谢大家观看,以前没写过技术分享类文章,有很多不周到的地方希望大家能多多指正。学习前端的小菜鸟敬上Y(^_^)Y

标签:javascript,瀑布流,自适应
0
投稿

猜你喜欢

  • 基于python实现cdn日志文件导入mysql进行分析

    2024-01-29 07:37:55
  • Python函数式编程之返回函数实例详解

    2021-10-31 03:46:26
  • Python实现子类调用父类的方法

    2023-09-28 12:00:55
  • Linux 7下脚本安装配置oracle 11g r2教程

    2024-01-13 13:35:56
  • Python和Bash结合在一起的方法

    2023-11-02 20:53:27
  • 详解PyQt5 事件处理机制

    2023-04-06 00:09:34
  • js实现axios限制请求队列

    2024-05-10 13:59:31
  • python实现求纯色彩图像的边框

    2022-04-01 22:04:51
  • python版本单链表实现代码

    2022-12-06 16:49:26
  • Python学习之用pygal画世界地图实例

    2021-03-22 13:04:47
  • JavaScript设计模式之享元模式实例详解

    2024-04-17 10:08:34
  • django haystack实现全文检索的示例代码

    2021-04-08 05:00:59
  • python实现数值积分的Simpson方法实例分析

    2023-08-01 17:35:01
  • Numpy中扁平化函数ravel()和flatten()的区别详解

    2022-09-23 08:52:23
  • Python爬虫分析微博热搜关键词的实现代码

    2022-11-29 16:13:44
  • PyQt4编程之让状态栏显示信息的方法

    2021-07-22 04:11:19
  • 如何做一个文本书写器?

    2010-07-12 18:58:00
  • OpenCV实现直线检测

    2023-08-14 01:37:35
  • 用Go写一个轻量级的ssh批量操作工具的方法

    2024-05-21 10:28:04
  • Oracle 存储过程教程

    2009-10-24 18:05:00
  • asp之家 网络编程 m.aspxhome.com