react-lazy-load icon indicating copy to clipboard operation
react-lazy-load copied to clipboard

Lazy Load on Array of Images issue

Open danielnuwin opened this issue 5 years ago • 2 comments

I am having trouble doing the lazy load on an array of images. It seems to just load my whole array at first instead of it one by one.

 const gallery = images.map((obj, i) => {
      return (
          <LazyLoad>
            <img src={obj.thumbnail} />
          </LazyLoad>
      );
    });

Is there a way to resolve my issue?

danielnuwin avatar Oct 28 '18 03:10 danielnuwin

I am having a similar issue. Everything renders as visible. Any thoughts?

cs-manughian avatar May 08 '19 20:05 cs-manughian

@danielnuwin @cs-manughian ,If you could find a solution, does the same thing happen to me?

Alexanderwags avatar Nov 15 '20 01:11 Alexanderwags