Scrolling Nav
Scrolling Nav is a basic Bootstrap framework for creating smooth scrolling, one page websites.
Check out some of the code below:
function success() {
var html = document.documentElement;
var body = document.body;
html.classList.add('sr');
if (body) {
body.style.height = '100%';
} else {
document.addEventListener('DOMContentLoaded', function () {
body.style.height = '100%';
});
}
}