You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.6 KiB

5 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Smooth Scroll</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <!-- stylesheets -->
  8. <style type="text/css">
  9. body {
  10. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  11. font-size: 112.5%;
  12. margin-left: auto;
  13. margin-right: auto;
  14. max-width: 40em;
  15. width: 88%;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <main id="top">
  21. <nav>
  22. <h1>Smooth Scroll</h1>
  23. <p><a href="https://github.com/cferdinandi/smooth-scroll">GitHub</a></p>
  24. <hr>
  25. </nav>
  26. <section>
  27. <p>
  28. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  29. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  30. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  31. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  32. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  33. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  34. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>
  35. .<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.
  36. </p>
  37. <p><a href="#">Back to the top</a></p>
  38. </section>
  39. </main>
  40. <!-- Javascript -->
  41. <script src="dist/smooth-scroll.polyfills.js"></script>
  42. <script>
  43. // Instantiate Scrolls
  44. var scroll = new SmoothScroll('a[href*="#"]', {
  45. topOnEmptyHash: false
  46. });
  47. </script>
  48. </body>
  49. </html>