
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
progressive-image-element
Advanced tools
Progressively enhance image placeholders once they are in the viewport.
$ npm install progressive-image-element
<!-- Include the stylesheet, this could be direct from the package or CDN -->
<link rel="stylesheet" href="https://unpkg.com/progressive-image-element@latest/dist/progressive-image-element.css" />
<!-- Include the custom element script, this could be direct from the package or CDN -->
<script type="module" src="https://unpkg.com/progressive-image-element@latest/dist/progressive-image-element.js"></script>
or
// Import the custom element script
import ProgressiveImageElement from 'progressive-image-element';
<progressive-image> element markup<progressive-image
src="example-image-1x.jpg"
srcset="example-image-2x.jpg 2x, example-image-1x.jpg 1x"
>
<!-- Make sure to specify image dimensions -->
<img src="placeholder-image.jpg" width="300" height="200" alt="Image" />
</progressive-image>
The placeholder image should be a solid color placeholder, LQIP or SQIP that hint at the content of the progressive image before it loads.
src Specifies the image to displaysrcset One or more image candidate stringssizes Comma-separated list of source size descriptorssavedata Boolean attribute to load the images only after a click/tap on the placeholder image.slow-2g|2g|3g).A CSS class loadable is present on <progressive-image> when the image is ready to load on user interaction (click).
Used for slow connections or when the savedata attribute is present.
progressive-image.loadable { ... }
A CSS class [loading] is present on <progressive-image> while the image is loading.
progressive-image.loading { ... }
A CSS class .loaded is present on <img> children of <progressive-image> when the image was loaded.
progressive-image > img { opacity: 0; }
progressive-image > img.loaded { opacity: 1; }
Distributed under the MIT license. See LICENSE for details.
FAQs
A progressive image element
The npm package progressive-image-element receives a total of 10 weekly downloads. As such, progressive-image-element popularity was classified as not popular.
We found that progressive-image-element 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.