美文网首页
插件之懒加载

插件之懒加载

作者: 琪33 | 来源:发表于2018-04-30 11:13 被阅读0次
     <style>
            div {
                height: 3000px;
                background-color: pink;
            }
        </style>
        <script src="jquery-1.11.1.js"></script>
        <script src="jquery.lazyload.min.js"></script>
        <script>
            $(function () {
                //懒加载调用
    
                //使用插件:1.引包。(必须在jquery之下)   2.通过调用方法实现功能,而参数的不同,功能也可能不同。
                $("img.lazy").lazyload();
            })
        </script>
    </head>
    <body>
        <div></div>
        <!--<img src="images/02.jpg" alt=""/>-->
        <img class="lazy" data-original="images/02.jpg" width="640" height="480">
    </body>
    

    相关文章

      网友评论

          本文标题:插件之懒加载

          本文链接:https://www.haomeiwen.com/subject/tnezlftx.html