JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

Member-only story

Building an Infinite Scroll with Vanilla JavaScript

Mehdi Aoussiad
JavaScript in Plain English
2 min readOct 24, 2020

Infinite Scroll.
Image By Mehdi Aoussiad.

Introduction

The Infinite Scrolling is one of the exciting projects that you have to try in order to improve your JavaScript skills. Last month, I built a simple infinite scroll, It was one of the projects that I have tried in my 100 days of code challenge. So before trying this project, you will need to have knowledge of HTML, CSS, and JavaScript. As you can see, the project is so simple, it just loads and creates HTML elements when we scroll down. Let’s see how our project looks.

The Project Demo

As you can see in the example above, the project is very simple, It creates infinite elements when we scroll down. We have also added a simple loading animation as you see in the example.

Let’s Start with HTML

First, we will put 3 elements that contain the blog text(Lorem text) inside a container. We will also add the HTML elements for the loading animation. Let’s have a look at the example below:

Let’s Style Our Elements

So now, we will style our elements using CSS. You can read the code below to see our stylesheet.

The JavaScript Part

Now, this is the exciting part that will make our project functional. In our JavaScript logic, we created a scroll event that calls…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in JavaScript in Plain English

New JavaScript and Web Development content every day. Follow to join our 3.5M+ monthly readers.

Written by Mehdi Aoussiad

I focus on writing useful/valuable articles for my audience(Web dev/SEO).