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 menu items as you scroll
- Scrolls to item's section on click
- Customizable easing for scrolling on click
- Vue2
- Uses pure JS!
Live Demo
https://eddiemf.github.io/vue-scrollactive/examples/example-1.html
Installation
Install via npm and use it as a vue plugin in your app.
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 emmit 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:
Dynamic menu items
In order for the component to update when you add a new menu item, you must call the setScrollactiveItems()
function. You can do that as I do in the example below:
Make sure to set the ref="scrollactive"
property when you call the component in order to access the function as I do, or feel free to do it in any other way you would like, you just need to call the setScrollactiveItems()
function.
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.