After building a fullscreen website using Bootstrap and the jumbotron feature, I added a 10px border with body padding for extra styling.
Here is the HTML structure:
<div class="row">
<div class="jumbotron indx-BG" >
...
</div>
</div>
And here is the CSS styling:
body { padding: 10px; }
.indx-BG {
background: url('...') no-repeat center center;
background-size: cover;
min-height: calc(100vh - 20px);
width: 100%;
}
Everything works as intended so far. Now, I'd like to add a responsive footer of unknown height that remains hidden until the user scrolls down. The goal is to keep the site fullscreen unless scrolling triggers the display of the additional footer content.
UPDATE: I also want to incorporate a smooth animation effect when scrolling, similar to the sliders that seamlessly shift content up or down on the screen.