当前位置:   article > 正文

手机端滚动分页加载数据模型_手机端展示数据过多时分页

手机端展示数据过多时分页

说明:运行demo的时候请将浏览器模式调整到苹果5

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        ul {
            width: 100%;
            height: auto;
        }

        .clearfix:before,
        .clearfix:after {
            content: "";
            display: table;
        }

        .clearfix:after {
            clear: both;
            overflow: hidden;
        }

        li {
            list-style: none;
            width: 130px;
            height: 130px;
            background: pink;
            float: left;
            margin: 10px;
        }
    </style>
</head>

<body>
    <ul class="clearfix" id="list-group">

    </ul>
</body>
<script>
    function createLi(num) {
        var ulDom = document.getElementById("list-group");
        //每次创建num个
        for (var i = 0; i < num; i++) {
            var liDom = document.createElement("li");
            liDom.innerHTML = i;
            ulDom.appendChild(liDom);
        }
    }
    createLi(10);
    //获取屏幕高度
    var maxHeight = document.documentElement.clientHeight;
    window.onscroll = function() {
        //获取最后一个元素距离顶部的高度
        var liDomHeight = document.getElementById("list-group").lastChild.offsetTop;
        var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
        //当最后一个距离顶部的距离小于屏幕的高度+滚动条的高度就加载数据
        if (liDomHeight < (maxHeight + scrollTop)) {
            createLi(10);
        }
    }
</script>

</html>

</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/97437
推荐阅读
相关标签
  

闽ICP备14008679号