无限加载-jsonp-瀑布流例子

一、代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>32</title>
    <style>
        html,body,ul,li,p,div{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        ul,li{
            list-style: none;
        }
        #wrap{
            width: 900px;
            margin: 0 auto;
        }
        .content{
            border: 1px solid #ccc;
            width: 280px;
            padding-bottom: 10px;
            margin: 10px;
            text-align: center;
            position: absolute;

        }
        .ct{
            position: relative;
        }
        h4{
            border-bottom: 1px solid #ccc;
            height: 25px;
            margin: 0 12px;
        }
        p{
            font-size: 12px;
            line-height: 1.8;
            color: #777371;
            margin: 10px 10px 0 0;
        }
        img{
            margin: 10px;
        }

        .clearfix:after{
            content: "";
            clear: both;
            display: block;
        }
        .hide{
            display: none;
        }

    </style>
</head>
<body>
    <div id="wrap">
        <div class="waterfall clearfix">
            <ul class="ct clearfix">
                <!--<li class="content">-->
                    <!--<a href="http://www.sinaimg.cn/dy/slidenews/5_t160/2016_42/453_82059_144634.jpg">![pic](http://upload-images.jianshu.io/upload_images/2166980-af464a91239f22ab?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)-->
                    <!--</a>-->
                    <!--<h4>神舟十一号飞船发射圆满成功</h4>-->
                    <!--<p>10月17日7时30分,搭载神舟十一号载人飞船的长征二号F 遥十一运载火箭点火发射。</p>-->
                <!--</li>-->
                <li class="content hide"></li>
            </ul>
            <div class="load">看见我了请马上加载数据</div>
        </div>

    </div>
    <script src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js"></script>
    <script>
        // 1、判断。load是否出现在用户视线中
        //2、出现了则利用ajax的方式从后台获取数据


        function isVisible($node) {

           var scrollH=$(window).scrollTop(),
                   winH=$(window).height(),
                   nodeOffset=$node.offset().top;

            if ((scrollH+winH)>=nodeOffset){
                return true
            }
            else {return false}
        }

        var perPageCount=9,
                curPage=1;
        function getAndPlaceData() {
            if (isVisible($(".load"))){
                $.ajax({
                    url:"http://platform.sina.com.cn/slide/album_tech",
                    dataType: 'jsonp',
                    jsonp:"jsoncallback",
                    data:{
                        app_key:"1271687855",
                        num: perPageCount,
                        page:curPage
                    }
                }).done(function (ret) {
                    if (ret && ret.status && ret.status.code === "0"){
                        placeData(ret.data);
                    }else{console.log("get ajax data error1")}
                    
                })
                 .fail(function () {
                            console.log("get ajax data error2")
                 })
            }
        }

        //3、将获取的数据append到ul中 待图片加载完成,使用瀑布流的方式放置元素

        function placeData(nodelist) {
            var $nodes=renderData(nodelist);
            var arr=[];
            $nodes.find("img").each(function () {
                var defer = $.Deferred();
                $(this).load(function () {
                    defer.resolve()
                });
                arr.push(defer)
            });

            $.when.apply(null,arr).done(function () {
                console.log("all pic loaded");
                waterFall($nodes)
            })

        }

        function renderData(data) {
            var str="",
                $nodes;
            for (var i=0;i<data.length;i++){
                str+='<li class="content">';
                str+='<a href="'+data[i].url+'">[站外图片上传中……(2)]</a>';
                str+='<h4>'+data[i].short_name+'</h4>';
                str+='<p>'+data[i].short_intro+'</p>';
                str+='</li>';
            }
            $nodes=$(str);
            $(".ct").append($nodes);
            return $nodes;
        }

        var widthNum=parseInt($("#wrap").width()/$(".content").outerWidth(true)),
                allHeight=[];

        for (var i=0;i<widthNum;i++){
            allHeight.push(0)
        }


        function waterFall($nodes) {

            $($nodes).each(function () {
                var $cur=$(this),
                        indx=0,
                        minAllHeight=allHeight[0];
                for (var j=0;j<allHeight.length;j++){
                    if (allHeight[j]<minAllHeight){
                        minAllHeight=allHeight[j];
                        indx=j;
                    }
                }

                $cur.css({
                    "left":indx*$cur.outerWidth(true),
                    "top":minAllHeight
                });
                allHeight[indx]=minAllHeight+$cur.outerHeight(true);
                $(".ct").height(Math.max.apply(null,allHeight));
            })

        }

        getAndPlaceData();

        $(window).on("scroll",function () {
            getAndPlaceData();

        })

    </script>


</body>
</html>

二、预览地址:

https://github.com/have-not-BUG/task/blob/master/renwu/renwu32/renwu32.html

**本文版权归本人即简书笔名:该账户已被查封 所有,如需转载请注明出处。谢谢! *

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容