npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

zoo-lazyload

v1.0.1

Published

A fast, lightweight script to load images as they enter the viewport. SEO friendly, it supports responsive images (both srcset + sizes and picture) and progressive JPEG

Downloads

5

Readme

zcy-lazyload

政采云懒加载组件,轻松实现懒加载+图片优化.基于可配置的图片属性,实现自动添加阿里云cdn压缩后缀,支持webp。基于vanilla-lazyload8.17.0定制。

##使用方法

简单使用
<img class="lazyload" data-src="./img/img.jpg" alt="图片名称" width="100" height="100" />
// 传入需要懒加载的图片class
new LazyLoad('.lazyload');
// 或者
new LazyLoad({
    elements_selector: '.lazyload'
});
详细配置文档

详细配置

  • 图片
    • class
      • img加lazyload class,此class为LazyLoad的elements_selector配置项。
    • src
      • 改为data-src。
    • width、height: 设置图片宽高
      • 读取width、height属性作为cdn压缩的后缀。
      • 不设置宽高的话,只可以压缩jpg格式的质量。
    • data-format: 设置图片类型:
      • png: 图片转为png格式。
      • jpg: 图片格式改为jpg。默认是jpg格式,所以此选项可不写。
      • 1或其他:不改变原来图片格式
        • 如果图片需要透明背景,则不可压缩质量,只能改变尺寸。请添加data-format="1"属性,这样js就不会在不支持webp的浏览器中加jpg后缀了
    • data-q: 压缩质量
      • 默认为75, 可通过data-q设置修改压缩质量, 取值为60-100之间的整数
    • data-dpr: 倍图设置
      • 可在图片上data-dpr="2"来配置2倍或其他数字。
  • 背景图
    • 需要背景透明:不修改
    • 不需要背景透明:加后缀?x-oss-process=image/quality,Q_75/format,jpg

打包: npm run build