Code Monkey home page Code Monkey logo

progressive-img's Introduction

Custom element <progressive-img>

Custom element (written in Polymer) to load img progressively and lazily. It first shows tiny blurred placeholder and loads full-sized image afterwards. It can also defer loading until placeholder is clicked or enters viewport.

Basic usage

You basically take all your <img> tags, change them to <progressive-img> and add placeholder attribute. It will display a blurred placeholder and load src/srcset after being clicked.

<progressive-img
    src="..."
    srcset="..."
    sizes="..."
    alt="..."
    placeholder="my-placeholder.jpg">
</progressive-img>

Load strategy

<progressive-img
    srcset="..."
    placeholder="..."
    alt="..."
    load-strategy="instant | on-visible">
</progressive-img>

Load strategy controls when image starts loading. There are 3 options:

Load strategy Behavior
instant image will start loading immediately
on-visible image will load if is visible or when enters viewport

Clicking the placeholder will always trigger image loading no matter what. You can completely leave out load-strategy if that's all you need.

Intersection margin

<progressive-img
    srcset="..."
    placeholder="..."
    alt="..."
    load-strategy="on-visible"
    intersection-margin="500px">
</progressive-img>

Intersection margin only takes effect if load-strategy="on-visible" is set. Default value is 200px, so image will trigger loading when enters 200px wide area around viewport.

intersection margin

For this effect, progressive-img uses intersectionObserver API. Here you can read more about how it works:

intersection-margin attribute is assigned to rootMargin of intersection observer, so you can use any valid value of rootMargin.

IntersectionObserver Polyfill

If you need to use load-strategy=on-visible in browsers that don't currently support intersection API, you can just include official polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill, it's one liner.

What about browsers with disabled javascript?

Without js, progressive-img can't load. Which is great because you can easily create fallback:

<progressive-img src="..." alt="..." placeholder="..."></progressive-img>
<noscript>
  <img src="" alt="">
</noscript>

Styling

progressive-img uses 4 CSS custom properties to customize the appearance.

CSS property description
--placeholder-filter Filter applied to placeholder image. Defaults to blur(10px) saturate(1.2)
--placeholder-scale Transform scale value. Defaults to 1.1 to prevent blurred placeholder from having white borders
--transition-duration Duration of swapping placeholder and final image. Defaults to .2s
--transition-timing-function Timing function of swapping placeholder and final image. Defaults to ease-in

You can find examples of this in demo page

progressive-img's People

Contributors

prompteus avatar kohlibrie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.