jquery图片延迟加载

旧时模样 提交于 2019-11-29 05:30:28

在用户滚动页面到图片之后才进行加载,使用图片延迟加载,能有效的提高页面加载速度。

 

所需js插件:

<script type="text/javascript" src="${path}/js/jquery.lazyload.js"></script>
<script type="text/javascript" src="${path}/js/jquery.lazyload.min.js"></script>
<script type="text/javascript" src="${path}/js/jquery.scrollstop.js"></script>
<script type="text/javascript" src="${path}/js/jquery.scrollstop.min.js"></script>

 

主script方法:

<script type="text/javascript">
    $("img").lazyload(); //所有图片均延迟加载
</script>

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!