Sticks the footer to the bottom of the screen, only when the page is smaller than the viewport on medium to large screen sizes.
npm install fix-footer dom-factoryLoad the libraries and add the
.fix-js-footerCSS class to your footer.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="node_modules/fix-footer/dist/fix-footer.css">
</head>
<body>
<footer class="fix-js-footer">
Copyright © 2016 - Sample footer
</footer>
<script src="node_modules/dom-factory/dist/dom-factory.js"></script>
<script src="node_modules/fix-footer/dist/fix-footer.js" async defer></script>
</body>
</html>