• Stars
    star
    262
  • Rank 150,457 (Top 4 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 4 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

⚡️ <progressive-image> custom element

<progressive-image> element

A progressive image element

CI status npm version npm downloads

Progressively enhance image placeholders once they are in the viewport.

  • Responsive lazy loading images
  • Save data option
  • No content reflow/layout shifting
  • No dependencies
  • Framework agnostic
progressive image element markup example

Install

$ npm install progressive-image-element

Usage

  1. Include the script & stylesheet within your application
<!-- 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 src="https://unpkg.com/progressive-image-element@latest/dist/index.js"></script>

or

// Import the custom element script
import ProgressiveImageElement from 'progressive-image-element';
  1. Use the <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.

Attributes

  • src Specifies the image to display
  • srcset One or more image candidate strings
  • sizes Comma-separated list of source size descriptors
  • savedata Boolean attribute to load the images only after a click/tap on the placeholder image.
    By default enabled for slow connections (slow-2g|2g|3g).

Styling states

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; }

Examples

Browser support

Browsers without native custom element support require a polyfill.

License

MIT © André Ruffert

More Repositories

1

rangeslider.js

🎚 HTML5 input range slider element jQuery polyfill
JavaScript
2,165
star
2

i18n-literally

🍦 A simple way to introduce internationalization to your JS
JavaScript
80
star
3

range-slider-element

🍬 <range-slider> custom element
JavaScript
60
star
4

scratchie

👆 HTML5 canvas based scratch off panels
JavaScript
22
star
5

javascript-questions

❔ Multiple choice JS questions as PWA
JavaScript
20
star
6

snackbar

🍫 Lightweight feedback notifications
JavaScript
19
star
7

js-utils

🔥 A collection of some JavaScript utility functions for everyday use
JavaScript
16
star
8

emoji-clarification

❗ Clarify your words with emojis
CSS
12
star
9

hex-to-rgb

🎨 A simple React HEX to RGB Color Converter
JavaScript
6
star
10

number-words

💯 💬 Convert a number into words
JavaScript
4
star
11

emoji-suggestions

👊 Emoji suggestions for words
JavaScript
4
star
12

closest-number

🔢 Find the closest number out of an array to a specific value
JavaScript
4
star
13

maskify

🐼 Mask sensitive data strings
JavaScript
3
star
14

express-api-ready

Starter project for production-ready API's with express
JavaScript
2
star
15

remove-leading-slash

🗑 Remove leading slashes from a given string
JavaScript
1
star
16

up

📈 Uptime monitor and status page powered by @upptime
Markdown
1
star
17

git-hook-deployment

A collection of git hook scripts
Shell
1
star
18

booom

💥 A simple CLI to scaffold some files or folder structures to kickstart new projects
JavaScript
1
star
19

subl-snippets

Some Sublime Text 2 Snippets
1
star
20

crayola

🌈 Get Crayola Names and Color Codes.
JavaScript
1
star