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

@sitelintcode/css-lazy-loading-background

v0.0.11

Published

Lazy loading background in CSS

Downloads

5

Readme

CSS Lazy Loading Background

Lazy loading CSS background isn't available out of the box in the browser. Therefore this package should help to achieve that.

Demo

CSS Lazy Loading Background

Getting started

First download the package:

npm install @sitelintcode/css-lazy-loading-background --save

Setting up the image

CSS

Specify the whole image URL in --background-image-lazy:, but without url(), as normally you would use.

Example usage for a single image:

  --background-image-lazy: prague-3010406_1920_thumbnail.jpeg;
  background-image: var(--background-image-lazy);

Example usage for for multiple images through image-set CSS functional notation:

  --background-image-set-lazy: image-lazy-set(
    url("ekg_1280.png") type("image/png"),
    "ekg_1280.webp" type("image/webp")
  );
  background-image: var(--background-image-set-lazy);

HTML and attribute data-lazy-background

Eventually, if you want to use as the attribute data-lazy-background then:

  <div class="example-data-lazy-background" data-lazy-background="san-francisco-panorama.jpg"></div>

TypeScript

  import CssLazyLoadingBackground from '@sitelintcode/css-lazy-loading-background';

  const cssLazyLoadingBackground: CssLazyLoadingBackground = new CssLazyLoadingBackground();

  cssLazyLoadingBackground.initialise();

The initialise method will automatically be applied based on document.readyState and if the page isn't loaded yet then use DOMContentLoaded event.

JavaScript

The package is also exposed to the global object (window in the browser) so you can use it in following way:

  <script>
    (function() {
      const cssLazyLoadingBackground = new window['css-lazy-loading-background'].CssLazyLoadingBackground();

      cssLazyLoadingBackground.initialise();
    }());
  </script>

Technical

  1. import { terser } from "rollup-plugin-terser"; was replaced with import { terser } from "rollup-plugin-minification"; because rollup-plugin-terser is not compatible with Rollup 3.x version. See: https://github.com/TrySound/rollup-plugin-terser/issues/119

Contributing

Contributions are welcome, and greatly appreciated! Contributing doesn't just mean submitting pull requests. There are many different ways for you to get involved, including answering questions on the issues, reporting or triaging bugs, and participating in the features evolution process.

License

MOZILLA PUBLIC LICENSE, VERSION 2.0