瀑布流布局-木桶布局

1.瀑布流

<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>pubuliu</title>
    <style>
        .content {
            font-size: 0;
            position: relative;
        }
        
        .item {
            position: absolute;
            margin: 0;
            padding: 0;
            margin-bottom: 10px;
            width: 100px;
            transition: all 1s;
        }
        
        .h1 {
            background-color: red;
            height: 100px;
        }
        
        .h2 {
            background-color: gray;
            height: 200px;
        }
        
        .h3 {
            background-color: green;
            height: 80px;
        }
        
        .h4 {
            background-color: orange;
            height: 150px;
        }
        
        .h5 {
            background-color: blue;
            height: 90px;
        }
        
        .h6 {
            background-color: yellow;
            height: 100px;
        }
    </style>
</head>

<body>
    <div class="content">
        <div class="item h1"></div>
        <div class="item h2"></div>
        <div class="item h3"></div>
        <div class="item h4"></div>
        <div class="item h5"></div>
        <div class="item h6"></div>
        <div class="item h1"></div>
        <div class="item h2"></div>
        <div class="item h3"></div>
        <div class="item h4"></div>
        <div class="item h5"></div>
        <div class="item h6"></div>
        <div class="item h1"></div>
        <div class="item h2"></div>
        <div class="item h3"></div>
        <div class="item h4"></div>
        <div class="item h5"></div>
        <div class="item h6"></div>
    </div>

    <script src="https://code.jquery.com/jquery-3.2.0.js"></script>
    <script>
        var $ct = $('.content');
        var $items = $('.item')
        var itemWidth = $items.outerWidth(true);
        var listArr = [];
        $(window).resize(function () {
            waterFull();
        })
        waterFull();
        function waterFull() {
            var waterLength = parseInt(($ct.width()) / itemWidth);
            for (var i = 0; i < waterLength; i++) {
                listArr[i] = 0;
            }
            $items.each(function () {
                console.log(listArr)
                var minValue = Math.min.apply(null, listArr);
                // console.log(minValue);
                var minIndex = listArr.indexOf(minValue);
                $(this).css({ left: minIndex * itemWidth, top: minValue })
                // console.log(minValue,$(this).outerHeight(true));
                listArr[minIndex] = minValue + $(this).outerHeight(true);
                // console.log(listArr[minIndex]);
            })
        }
    </script>
</body>

</html>

2.木桶布局(老师,我做的是随着窗口的扩大或者减小,重新布局,但是第一次加载的图片,跟扩大或者缩小的重新布局图片位置不一样,我认为是第一次加载图片监听onload第一张不是得到的真正的第一张图片,后面在扩大或者缩小已经缓存了,所以图片是正确位置。所以想问下老师,如何让第一次加载的图片位置跟以后我重新布局的图片位置一样)。能提供下思路吗,谢谢老师!

<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>mutongbuju</title>
</head>
<style>
    .ct {
        position: relative;
        /*width: 1000px;*/
        /*margin: 0 auto;*/
    }
    
    .ct:after {
        content: '';
        display: block;
        clear: both;
    }
    
    .box {
        float: left;
        font-size: 0;
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
        height: 100px;
        transition: all 1s;
    }
    
    .box>img {
        height: 100%;
    }
</style>

<body>
    <div class="ct">

    </div>
    <script src="https://code.jquery.com/jquery-3.2.0.js"></script>
    <script>
        var $ct = $('.ct');
        
        var urlsArr = getImgUrls(40);
        var clearCt = true;
        var firstLoad = true;
        $(window).resize(function () {
            $ct.empty();
            var load = new loadImg();
        })
        function getImgUrls(num) {
            var color, width, height, urls = [];
            for (var i = 0; i < num; i++) {
                color = Math.random().toString(16).substring(2, 8);
                width = Math.floor(Math.random() * 100 + 50);
                height = Math.floor(Math.random() * 30 + 50);
                urls.push("http://placehold.it/" + width + "x" + height + "/" + color + "/fff");
            }
            return urls;
        }


        function loadImg() {
            this.urlsArr = urlsArr;
            this.listArr = [];
            this.rowWidth = 0;
            this.handleImg();

        }
        loadImg.prototype.handleImg = function () {
            var xxx = 0;
            _this = this;
            $(_this.urlsArr).each(function (index, ele) {
                var imgg = new Image();
                imgg.src = this;

                imgg.onload = function () {
                    xxx++;
                    console.log(imgg.src)
                    var imgWidth = 100 * imgg.width / imgg.height;
                    var newRowHeight;
                    _this.rowWidth += imgWidth;
                    //   console.log(rowWidth)
                    _this.listArr.push($(imgg))
                    if (_this.rowWidth > $ct.width()) {

                        _this.listArr.pop();
                        //    console.log(xxx,listArr.length)
                        _this.rowWidth -= imgWidth;
                        newRowHeight = 100 * $ct.width() / _this.rowWidth;
                        for (var i = 0; i < _this.listArr.length; i++) {
                            var $box = $('<div class="box"></div>')
                            $box.height(newRowHeight);
                            $box.append(_this.listArr[i])
                            $ct.append($box)
                            // if(clearCt){
                            //     $ct.empty();
                                
                            // }
                            console.log(_this.listArr[i])
                        }
                        //   console.log(listArr)
                        _this.listArr = [];
                        _this.listArr.push($(imgg))
                        _this.rowWidth = imgWidth;
                    }

                    //如果图片数量有限会走下面这个方法处理。否则会少几张显示
                    if (index === _this.urlsArr.length - 1) {
                        
                        for (var i = 0; i < _this.listArr.length; i++) {
                            var $box = $('<div class="box"></div>')
                            $box.height(100);
                            $box.append(_this.listArr[i])
                            $ct.append($box)
                            // if(clearCt){
                            //     $ct.empty();
                                
                            // }
                            //   console.log(listArr[i])
                        }
                       
                    }
                    // clearCt = false
                    // if(firstLoad){
                    //     var load = new loadImg();
                    //     firstLoad = false;
                    // }

                }
            })
        }

        var load = new loadImg();
        
        // var load = new loadImg();
    </script>
</body>

</html>

3.新闻瀑布流

<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <style>
        .contain {
            width: 676px;
            margin: 0 auto;
        }
        
        .waterfull {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            margin-left: -20px;
        }
        
        .waterfull:after {
            content: '';
            display: block;
            clear: both;
        }
        
        .waterfull>li {
            border: 1px solid #ccc;
            width: 200px;
            padding: 5px;
            margin-bottom: 20px;
            margin-left: 20px;
            position: absolute;
            /*float: left;*/
        }
        
        .waterfull>li img {
            width: 100%;
        }
        
        .waterfull>li>h3 {
            padding: 0;
            margin: 0;
            margin-top: 5px;
        }
        
        .waterfull>li>p {
            padding: 0;
            margin: 0;
            margin-top: 5px;
            color: #ccc;
            font-size: 12px;
        }
        
        .contain>p {
            visibility: hidden;
        }
    </style>
</head>

<body>
    <div class="contain">
        <ul class="waterfull">
            <!--<li>
                    <a href="javascript:;">![](http://upload-images.jianshu.io/upload_images/1909214-37eb4e4c3ebad450.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)</a>
                    <h3>NASA计划研发金星漫游车</h5>
                    <p>美国航空航天局(NASA)披露了研制金星漫游车的计划。这台漫游车将完全不依赖电能,而是利用涡轮采集的风能进行工作。</p>
                </li>-->
        </ul>
        <p>加载更多</p>
    </div>
    <script src="https://code.jquery.com/jquery-3.2.0.js"></script>
    <script>
        var page = 1;
        var loading = false;
        var listArr = [0, 0, 0]

        //jsonp回调函数
        function func(obj) {
            for (var i = 0; i < obj.data.length; i++) {
                var object = obj.data[i]
                //创建li
                var $li = getNode(object) 
                //监听图片下载完成,然后设置高度
               //这个是领写的函数,直接写会莫名其妙的问题,就是append只拼接了一个
               //for循环里有回调函数,都是坑  还是多用each,用另一个函数包裹
                water($li)
            }    

            //成功以后,设置继续可以请求数据
            loading = false;
            //页数加一
            page++;
        }
        function getNode(object) {
           return  $('<li>\
                    <a href="'+ object.url + '">![](' + object.img_url + ')</a>\
                    <h3>'+ object.short_name + '</h5>\
                    <p>'+ object.name + '</p>\
                </li>')
        }
        //重点 折腾了好长时间
        function water($li){
            $li.find('img').on('load', function () {
                    $('.waterfull').append($li)
                    //以下等append以后才再取值,否则娶不到 $li.outerHeight(true)
                    // console.log($li)
                    var minValue = Math.min.apply(null, listArr)
                    var minIndex = listArr.indexOf(minValue);
                    //  console.log(111,listArr)
                    $li.css({ left: minIndex * $li.outerWidth(true), top: minValue })
                    listArr[minIndex] = $li.outerHeight(true)+minValue;
                    
                    //算出父容器高度,把p标签弄下去
                    $('.waterfull').height(Math.max.apply(null,listArr));
                    
                    console.log(listArr, listArr[minIndex],$li.outerHeight(true))
                })
        }

        //第一次请求数据
        loadNews();

        
        function createScript() {
            var scri = document.createElement('script')
            scri.src = 'http://platform.sina.com.cn/slide/album_tech?jsoncallback=func&app_key=1271687855&num=10&page=' + page
            document.body.appendChild(scri)
            document.body.removeChild(scri)
        }

        ///窗口滚动时
        $(window).on('scroll', function () {
            if(isShowP($('.contain>p'))){
               loadNews();
            }
            
        })

        //请求数据
        function loadNews() {
            console.log(loading)
            if (loading === true) return;
            loading = true;
            if(isShowP($('.contain>p'))){

             createScript()
            //  loadNews();
            }

        }
        function isShowP($node) {
            var scroTop = $(window).scrollTop();
            var windowHeight = $(window).height();
            var offsetT = $node.offset().top;
            var pHeight = $node.height();
            if (scroTop > offsetT - windowHeight) {
                return true;
            }
            return false;

        }
    </script>



</body>

</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • 1、实现一个瀑布流布局效果 性能效率上的注意点: 这种布局方式非常适合动态加载图片,当滚动条拉到最下面的时候可以通...
    饥人谷_阿靖阅读 487评论 0 0
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • 题目1 瀑布流布局:代码预览 题目2 木桶布局+懒加载+无限加载图片:代码预览 题目3 新闻瀑布流新闻网站代码 只...
    从前慢pearl阅读 227评论 0 0
  • 实现一个瀑布流布局效果 原理:利用绝对定位,位置可能不是按照1,2,3顺序排列1、计算容器内一行可以放置多少元素,...
    101架钢琴阅读 230评论 0 0
  • 题目1: 实现一个瀑布流布局效果 瀑布流 题目2:实现木桶布局效果 木桶布局 题目3:**实现一个新闻瀑布流新闻网...
    大大的萝卜阅读 201评论 0 0