1.0.0 • Published 8 years ago

fix-footer v1.0.0

Weekly downloads
37
License
ISC
Repository
github
Last release
8 years ago

Stick that footer!

npm version

Sticks the footer to the bottom of the screen, only when the page is smaller than the viewport on medium to large screen sizes.

Demo

http://fix-footer.themekit.io

Installation

npm install fix-footer dom-factory

Load the libraries and add the .fix-js-footer CSS 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 &copy; 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>