Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kosalexei/active-menu-link

A pure JavaScript smooth scroll & scrollspy library which highlights the active menu item based on the scroll position.
https://github.com/kosalexei/active-menu-link

highlight highlighting html javascript menu navbar navigation scrolling scrollspy-library typescript ui

Last synced: about 1 month ago
JSON representation

A pure JavaScript smooth scroll & scrollspy library which highlights the active menu item based on the scroll position.

Awesome Lists containing this project

README

        

# active-menu-link

[![NPM version](https://img.shields.io/npm/v/active-menu-link.svg)](https://www.npmjs.com/package/active-menu-link)
[![NPM downloads](https://img.shields.io/npm/dm/active-menu-link.svg)](https://www.npmjs.com/package/active-menu-link)

## Highlight Active Menu Based On The Scroll Position

A pure JavaScript smooth scroll & scrollspy library which highlights the active menu item based on the scroll position.

A typical use of this library is to create a sticky header navigation for your single page app that allows the user to smoothly scroll through page sections while highlighting the active menu item.

## Example
[Example](https://active-menu-link.netlify.com/)

## Installation

```shell
yarn add active-menu-link
# OR
npm install active-menu-link
```

## Usage

### HTML

```html


First

Second

Third


```

### JavaScript

```js
import ActiveMenuLink from "active-menu-link";

// Not necessary.
let options = {
activeClass: "active"
};

new ActiveMenuLink(".navbar", options);
```

## Options

**Supported Options**

| Name |Type | Default | Description |
| ---------------- |-----------| ---------- | ----------- |
| itemTag | `String` | *li* | Selector to which the active class will be applied |
| activeClass | `String` | *active* | Active class name |
| scrollOffset | `Number` | *0* | Scroll offset |
| scrollDuration | `Number` | *500* | Scroll duration in milliseconds |
| ease | `String` | *out-circ* | Scroll animation (view [ease](https://github.com/component/ease) for more) |
| headerHeight | `Number` | *null* | Navbar height. If *null*, height calculate automatic |
| default | `String` | *null* | If the scroll is not in one of the active sections, the default link will be active |
| showHash | `Boolean` | *true* | Show hash in address bar |

***Default* option example**

### HTML

```html


First

Second

Third


```

### JavaScript

```js
import ActiveMenuLink from "active-menu-link";

let options = {
default: "default"
};

new ActiveMenuLink(".navbar", options);
```

## Building

```shell
git clone https://[email protected]/Kosalexei/active-menu-link.git
cd active-menu-link
npm install
npm run build #Compiled .js file go to the dist folder.
```