Quickly add smooth scrolling to any links in your site using this simple plugin.
To get going quickly with Creep, just include the library after jQuery, select your link tags, and run creep on them. This would do it if you're starting fresh:
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="jquery.creep.min.js"></script>
<script>
$(function () {
$('a').creep();
});
</script> npm install jquery-creepThere are only a couple options as of now. Here they are:
$('a').creep({
offset: 0,
speed: 1000
});Add an offset to change the distance above or below anchor destinations. Helpful when you have a fixed menu and you need to scroll a certain number of pixels above the anchor destination so that your menu doesn't cover the content.
Adjust the scroll time. Set in milliseconds.
To contribute, you'll need nodejs and gulp installed. Fork and clone the repo, then visit the directory in the terminal and type npm install. After that you can simply run the gulp command to watch the files in the project. It'll automatically lint, test, compile, and minify the plugin files so you can just code.