How to Build an Animated Bootstrap Landing Page With Material Kit

In a previous tutorial, we discussed how to build a responsive landing page with Bootstrap 4. Today, we’ll learn how to create an animated landing page with Material Kit, a free Bootstrap 4 UI Kit based on Google’s Material Design

To implement it, we’ll use a combination of Bootstrap 4’s helper classes, Material Kit’s additional classes, and custom code when needed.

What We’ll be Working Towards

Here’s the page we’ll be building during this tutorial (take a look at the full page view for maximum effect):

The concept behind this page is to provide a quick overview of Scotland. The text content will come from Wikipedia, while the images will come from Unsplash.

Note: This tutorial assumes you have some familiarity with Bootstrap 4. If you need a refresher, check out the following tutorials:

What is Material Kit?

Material Kit

As already mentioned, Material Kit is a free Bootstrap 4 UI Kit inspired by Google’s Material Design. 

“Material Design is a design language that Google developed in 2014. Expanding on the “card” motifs that debuted in Google Now, Material Design uses more grid-based layouts, responsive animations and transitions, padding, and depth effects such as lighting and shadows.”

Created by Creative Tim, not only does it customize the default appearance of Bootstrap 4 components, but also it implements its own styles.

Apart from the free standard version, there’s also a premium variant called Material Kit Pro with even more features and capabilities. Happily enough, this UI Kit comes with well-organized documentation and three pre-built pages for speeding up the learning process.

1. Include the Required CSS & JS Libraries

For the purposes of this exercise, we’ll have to download and include a bunch of files in our pen. 

First, we’ll import the required Material Kit files by following the instructions on this page. Keep in mind that we’ll only include the assets that we’re going to use. For example, our page won’t contain a range slider, so there’s no need to incorporate the noUISlider slider. 

Next, we’ll import AOS.js, an easy-to-use library which will reveal our elements as we scroll down the page.

With all the above in mind, in the CSS editor of our pen we’ll include three files:

The required CSS files

Similarly, the JavaScript editor will contain five files:

The required JS files

2. Set Out the Markup

With all the required stuff in place, let’s examine the page markup. 

We’ll first define a header, five sections, a footer, and a back to top button. We’ll place the last four sections inside the main element. Later, as we’ll see, this wrapper element will receive a negative top margin, so its contents will overlap the bottom part of the first section.

Note: you might find this tutorial on collapsing margins interesting whilst we’re on the subject:

Here’s the page structure:

3. Build the Header

The page header will behave as a fixed positioned element and include only an external call-to-action button. Initially, its background will be transparent, but after 50px of scrolling it will become white:

The header layout

Here’s its structure:

Note that in a real page, inside the header we would have a navbar with links to the different sections.

4. Build the Hero Section

The hero section (or “banner section”) will contain a fullscreen background image and two headings. Plus, for readability reasons, we’ll create an empty image overlay by using the ::after pseudo-element:

The layout of the hero section

Here’s its structure:

And the styles for the overlay:

5. Build the Main Sections 

As we’ve discussed above, the main element will cover the bottom part of the hero section:

The main layout

To achieve this layout, we have to append the main and main-raised classes to it:

Section #1

The first section inside the main will contain a heading and two paragraphs:

The layout of the first section inside the main

The section markup:

Section #2

In this section, we’ll use tabs to present some details for the largest cities of Scotland:

Section 2

Here’s the markup:

Note: We’ll build the tabs/pills mainly by following Bootstrap’s markup instead of entirely using Material Kit’s markup. I think Bootstrap’s example is more complete and makes more sense with regards to accessibility.

Lastly, we’ll specify some simple styles for making the tab links bigger:

Section #3

The third section will contain a heading and a Masonry-like grid of cards. Each card will have an image along with a caption that will be part of its overlay. To do this, we’re going to take advantage of the CSS Multi-column Layout.

On small screens (< 576px), all cards will be stacked:

The layout of the third section inside the main on mobile devices

On larger screens though, we’ll have a two column layout:

The layout of the third section inside the main on small screens and above

Here’s the section structure:

The styles that will produce this behavior:

Section #4

The fourth section will include a heading and a form. 

Similarly to the previous section, on small screens (< 576px), all cards will be stacked:

The layout of the fourth section inside the main on mobile devices

On larger screens, we’ll have a two column layout:

The layout of the fourth section inside the main on small screens and above

Here’s the section structure:

By default, Material Kit adds a purple color to the checkbox. In addition, the form elements receive an animated bottom purple border during the focus state. At this point, we’ll replace that color with the common rose (deep pink) one which is used throughout the page. 

The required styles:

6. Build the “Back to Top” Button

The back to top button will be a fixed positioned element which will initially be hidden:

The back to top button layout

Here’s its structure:

Notice the is-hidden class responsible for hiding it. 

The associated button styles:

As long as a user scrolls to the bottom of the page, the button will appear. Then, if the user clicks on it, they will smoothly return to the top of the page.

The following JavaScript code handles the aforementioned functionality:

Note that the footer section doesn’t include anything special, so we’ll omit it for the sake of simplicity. You can check it on your own!

Great job, folks! Without putting too much effort, we managed to build a beautiful Material Design landing page.

But, let’s be honest, there’s still enough room for improvement, right!

7. Animate Elements on Scroll

Up to this point, our page looks great! But, let’s go one step further and bring life to specific elements as they come into view. There are a number of different ways (e.g. JS plugins, Intersection Observer API, etc.) to accomplish it. In actual fact, I’ve already covered that requirement in previous tutorials:

For this example, we’re going to use AOS.js, a straightforward JavaScript library that I really like.

As a first step, we’ll add the custom data-aos attribute to the target elements. The value of this attribute can receive different keywords such as fade-up, fade-down and flip-left which indicate the type of effect. In our case, the majority of elements (apart from the masonry elements) will appear with a small slide animation, thus we’ll give them data-aos="fade-up", like this:

Next, we’ll initialize the plugin and modify a few of its default options. Most importantly, we’ll set once: true. That will cause the animations to fire only once. Specifically, as you scroll down the page for the first time:

It’s worth noting that we also add a second custom attribute (data-aos-delay) to the last two tab links (cities): 

The value of this attribute will override the one passed within the configuration object (delay: 50). Its job is to sequentially animate the tab links/cities. By default, they would appear all at once because they have the same vertical position.

Lastly, as we navigate through the tabs, the page height will change. In such a scenario, we have to inform the plugin about this change and let it recalculate the positions of the target elements. Of course, this case makes sense only when the once option is set to true and animations happen all the time. Anyhow, if you ever need such behavior, here’s the required code:

Conclusion

That’s all folks! Thanks for following along, I hope the journey was worth the effort and you gained some new knowledge. If you have ever built any pages with Material Kit, or any other Material Design framework, be sure to share them with us in the comments below. 

What is your favorite Material Design framework?

Here’s a reminder of what we built:

As a last thought, just keep in mind that the best way to understand and perhaps extend this page is by checking the code via the developer tools. The same approach is recommended if you decide to dig into Material Kit’s pre-built pages.

As always, thanks a lot for reading!

More Bootstrap 4 Tutorials

Take your Bootstrap 4 skills to the next level with these tutorials:

Leave a comment

Your email address will not be published.