javascript - jQuery infinite scroll missing css background load amount pages -
i'm using lastest version of infinite-scroll (by paulirish). work fine, there strange issue, don't know issue or not.
well, let's imagine: you've forum, , you're using infinite scroll in thread 20 pages. can load smoothly 8 pages. after that, it's impossible load full css (the background image in css) 9th page.
you can see screenshot here : http://photo.luyencong.net/images/infinitesc.png
meet issue or issue before? please give me advices, lots.
let's separate big background 3 smaller parts.
html
<div id="start_part">...</div> <div id="content_part"> <div class="wrapper">...</div> </div> <div id="end_part">...</div>
css
#start_part { background: url("top-part.jpg") 0 0 no-repeat; } #content_part { background: url("center-part.jpg") no-repeat fixed center top transparent; margin: 0 auto; } #content_part .wrapper1 { background: url("top-part.jpg") 1px 0 no-repeat; width: 100%; } #content_part .wrapper2 { background: url("bottom-part.jpg") 1px 0 no-repeat; width: 100%; } #end_part { background: url("top-part.jpg") 0 0 no-repeat; }
hope may helps.
Comments
Post a Comment