vue-scrollactive
Lightweight and simple to use vue component that highlights menu items as you scroll the page, also scrolling to target section when clicked.
This Vue 2 component makes it simple to highlight a menu item with an 'active' class as you scroll.
- Highlights items with a class as you scroll
- Scrolls to item's section on click
- Customizable easing for scrolling on click
- Emits events on class changes
Installation
Install via npm
and use it as a vue plugin in your app.
Or if you wish to include it in a script
tag, just include the vue-scrollactive.min.js
file located in the dist
folder as so:
Usage
You should wrap your menu in a <scrollactive>
tag (which will be your nav) and add a .scrollactive-item
class in your <a>
tags as I show in the example below:
You can follow whatever structure you wish, just make sure to set the .scrollactive-item
class in the items you want to highlight and set its href
with a valid ID that you would like to track while scrolling.
Events
Scrollactive will emit an itemchanged(event, currentItem, lastActiveItem)
event when an active menu item is changed to another, you can catch that event doing as the example below:
Configuration
All options should be passed as a prop in the <scrollactive>
component as you can see in the example below:
Remember that all options are optional and you can see the default values in the Options sections.