shimmer-lazyload

4.0.1 • Public • Published

lazyload

GitHub release license license

Install

npm i shimmer-lazyload
// or
yarn add shimmer-lazyload

Or you can use script tag:

<script src="https://unpkg.com/shimmer-lazyload@^4.0/dist/lazyload.min.js"></script>

Usage

Simple example

<!DOCTYPE html>
<html>
  <head>
    <title>lazyload</title>
  </head>
  <body>
    <script src="https://unpkg.com/shimmer-lazyload@^4.0/dist/lazyload.min.js"></script> 
 
    <!-- A lot of content -->
    <!-- A lot of content -->
 
    <img
      id="img"
      data-src="real/image/src.jpg"
      src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==">
 
    <script>
      var lzld = lazyload();
      lzld(document.getElementById(img));
    </script> 
  </body>
</html>

API

var lzld = lazyload([opts])

opts is an object with these defaults:

{
  'offset': 200,
  'src': 'data-src',
  'container': false,
  'loader': null,
  'replaceGetAttribute': false
}

opts.container is the referencing container, it's the viewport, defaults to document.body

opts.offset is a length in pixels used to compute when an element will soon be visible. So that you load it just before it becomes visible.

opts.src is the attribute name storing the real src of the element to load, or it can also be a function, so that you can have your custom src computing algorithm. You can use it to lazyload High DPI/retina images.

opts.loader is the function that you can custom the load behaviour, for example, load it into "background-image". see examples/custom-loader.html.

opts.replaceGetAttribute replace the default getAttribute or not.

Then, add the elements to lazyload:

lzld(document.getElementById('image'));
lzld(document.querySelectorAll('img'));

Developing

Launch the dev server:

npm run dev
// or
yarn dev

Building

We provide a pre-built version of lazyload in dist/lazyload.min.js.

You can build your own:

npm run build
// or
yarn build

You get the build in dist/lazyload.min.js.

Licence

(The MIT Licence)

Copyright (c) Vincent Voyer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i shimmer-lazyload

Weekly Downloads

11

Version

4.0.1

License

MIT

Unpacked Size

591 kB

Total Files

38

Last publish

Collaborators

  • fenyu
  • tangtsz
  • shuangya