0

I'm using Mika Tuupola's Lazy Load, which is excellent, but need to delay loading even when image above the fold...

So, user scrolls, when image in view I want to delay 400ms then show the image.

There is a way to increase threshold so images load before shown, but not other way.

I've searched docs on github and can't find a way to do this without reinventing wheels.

Has anyone done this? I know it might seem strange but there's a valid reason for wanting to do it.

StudioTime
  • 22,603
  • 38
  • 120
  • 207
  • 3
    Why do you want to do that if I may ask. The whole idea behind it is that it loads under the fold. – putvande Feb 22 '14 at 19:16
  • Sure... I am loading images which users add themselves, each image comes from a different place, I want to briefly show where the image came from and then fade the image in over the top of where it came from – StudioTime Feb 22 '14 at 19:22

1 Answers1

-1

From the docs:

enter image description here

I assume you can bind the scroll event instead of load and it would work just the same.

Mr. Smee
  • 968
  • 11
  • 28