문제

I have implemented lazyload on my website, but i found that sidebar image is not loading until full page scroll. Because sidebar HTML code is footer and CSS is used to display that in sidebar.

Is there a way i can do something to show sidebar image without full scroll, for example after a little scroll

Test page : http://www.pricingindia.in/mobile/nokia-lumia-1320-price-80950

도움이 되었습니까?

해결책

Bind the plugin separately to main content and sidebar. Something like:

$("#ProductPrice img.lazy").lazyload({
    effect: "fadeIn"
});

$("ul.listview img.lazy").lazyload({
    effect: "fadeIn"
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top