Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
shimmer-lazyload
Advanced tools
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>
<!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>
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'));
Launch the dev server:
npm run dev
// or
yarn dev
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
.
(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.
FAQs
Image lazy loading
The npm package shimmer-lazyload receives a total of 5 weekly downloads. As such, shimmer-lazyload popularity was classified as not popular.
We found that shimmer-lazyload demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.