Simple scroll to top function. No dependencies.
You can get it on npm.
npm install roll.js
Or using yarn.
yarn add roll.js
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>
Now, all you need to do is call the roll
function into your desired event.
const button = document.querySelector('button')
button.addEventListener('click', () => {
roll()
})
- 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
MIT License © Iago Dahlem