npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-lazy-responsive-image

v1.0.0

Published

Add lazy-loading and LQIP-techniques to ember-responsive-image.

Downloads

3

Readme

ember-lazy-responsive-image

CI

This ember-cli addon provides an ad-hoc replacement for the responsive-image component. It adds lazy-loading and LQIP (Low Quality Image Placeholder)-techniques to the ember-responsive-image addon. It integrates the lazysizes library through ember-cli-lazysizes.

See our demo page

Compatibility

  • Ember.js v3.16 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

ember install ember-lazy-responsive-image

Usage

The addon adds lazy-loading feature to the responsive-image component without any need for changes in your configuration. Furthermore it extends the configuration of the ember-responsive-image addon with the new lqip option to enable LQIP-support:

module.exports = function(environment) {
  let ENV = {
    'responsive-image': {
      // other options...
      lqip: {        
        type: 'inline',
        width: 150,
        quality: 50
      }      
    }
  }
}

Note: If you're using the responsive-background component, you have to enable the bgset-plugin for ember-cli-lazysizes in your ember-cli-build.js file, see: plugins

Options

  • type: The type of the LQIP, one of inline or remote. If type is inline, an placeholder-image will be generated as an base64-encoded string. There's no additional request necessary and the image is immediately available. The downside is the application size increases because the encoded image becomes part of the application code. If type is remote, the image placeholder is one of the generated images, picked by the width-option.
  • width: (optional) If the type-option is inline, this will be the width of the inline placeholder-image. If type is remote, this has to be one of the supportedWidths-option. If you omit this option, the addon choose the lowest value from supportedWidths.
  • quality: (optional) If the type-option is inline, this is the quality of the inline placeholder-image. If not set, it inherits from the base configuration. This option has no effect if type is remote.

The responsive-image component

The responsive image component replaces the origin responsive-image component and supports laziness and LQIP out-of-the-box. To disable lazyness and/or LQIP on a particular component, you can set the parameters lazy and/or lqip to false.

<ResponsiveImage @image="myImage.png" @lazy={{false}} @lqip={{false}}/>

The responsive-background component

Note: If you're using the responsive-background component, you have to enable the bgset-plugin for ember-cli-lazysizes in your ember-cli-build.js file, see: plugins

The responsive background component replaces the origin responsive-background component and supports laziness and LQIP out-of-the-box. Like the responsive-image component, you can disable lazyness and/or LQIP through the parameters lazy and lqip.

<ResponsiveBackground @image="myImage.png" @lazy={{false}} @lqip={{false}}/>

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.