roll.js
v1.0.2
Published
Simple scroll to top function. No dependencies.
Maintainers
Readme
roll.js
Simple scroll to top function. No dependencies.
Install
You can get it on npm.
npm install roll.jsOr using yarn.
yarn add roll.jsSetup
You can import it using ES6 Modules.
import roll from 'roll.js'Or using CommonJS.
const roll = require('roll.js')If you are not using a bundler, just include the script located in the dist folder.
<script src="dist/roll.min.js"></script>Usage
Now, all you need to do is call the roll function into your desired event.
const button = document.querySelector('button')
button.addEventListener('click', () => {
roll()
})Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -m 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request :D
License
MIT License © Iago Dahlem
