0.0.17 • Published 5 years ago

@foo-software/react-lazy-offscreen-image v0.0.17

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@foo-software/react-lazy-offscreen-image

React Lazy Offscreen Image exports a lazy loading React component to display a background image when in the viewport and the image is loaded. When analyzing website performance with tools like Lighthouse for example, often we find an opportunity for improvement in loading images below the fold, on demand - asynchronously. Lighthouse documentation explains the offscreen image performance metric in detail. This component provides lazy loading of images as an element with a backround image, when the user has scrolled it into the browser viewport. This technique is known as "lazy loading".

Install

npm

npm install @foo-software/react-scroll-context @foo-software/react-lazy-offscreen-image

yarn

yarn add @foo-software/react-scroll-context @foo-software/react-lazy-offscreen-image

Dependencies

Props

Usage

Example combined with react-scroll-context.

import React from 'react';
import { ScrollProvider } from '@foo-software/react-scroll-context';
import { LazyOffscreenImage } from '@foo-software/react-lazy-offscreen-image';

// replace `scroll-context` any name you like.
const ScrollContext = React.createContext('scroll-context');

const App = () => (
  <ScrollProvider
    Context={ScrollContext}
  >
    <div>
      <h1>Scroll it!</h1>
      <p>Ipsum lorem, a lot of content here...</p>
      <LazyOffscreenImage
        imageUrl="http://placekitten.com/300/300"
        ScrollContext={ScrollContext}
      />
    </div>
  </ScrollProvider>
);

Demo

An example using this component can be seen on Foo's features page.

Credits

This package was brought to you by Foo - a website performance monitoring tool. Create a free account with standard performance testing. Automatic website performance testing, uptime checks, charts showing performance metrics by day, month, and year. Foo also provides real time notifications when performance and uptime notifications when changes are detected. Users can integrate email, Slack and PagerDuty notifications.

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago