I'm making a static website on which I have too many parallax images. Basically each section is separated by a parallax image. Now the problem that I'm facing is, as I'm building my website and adding sections and more parallax images, some of the images near the bottom of the website are moving out of the frame. What I mean by this is, that the images are probably starting at the wrong position, and then as I scroll, they end up moving out of their div or frame and I see empty space underneath the image.
This is not happening for all images though; only images near the bottom of the website experience this problem. Furthermore, the lower an image is, the more pronounced this problem is.
Here is my code for inserting the parallax images:
<div class="section parallax light-translucent-bg parallax-bg-5">
<div class="container">
<div class="call-to-action">
</div>
</div>
</div>
Here is the CSS for this div:
.parallax-bg-5 {
background: url("../images/parallax-bg-5.jpg") 50% 0px no-repeat;
}
So I solved this problem by making the images repeat. As I mentioned in the comments, I just discovered the crux of the problem. Each image starts moving as soon as you start scrolling on the website from the very top. This means that by the time you reach the bottom off the website, the images over there have moved too much and are out of the div.
So for example, I changed
to
and repeated doing this for every div or image with parallax.
I am concerned a little bit about performance and did notice my laptop heating up when I repeated the images and I have a very powerful machine (rMBP 15"). If anyone has a better solution, please post it here.