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

https://github.com/christophhu/ngx-scroll-indicator

This Repository contains a simple Angular library to display a scroll indicator at the bottom of the page. The user can scroll to the top of the page by clicking on the indicator. The indicator is displayed the hole time as an animation, that the user cann scroll down. At the bottom of the page, the indicator is displayed as a button to scroll to t
https://github.com/christophhu/ngx-scroll-indicator

angular indicator ngx scrolling

Last synced: 10 months ago
JSON representation

This Repository contains a simple Angular library to display a scroll indicator at the bottom of the page. The user can scroll to the top of the page by clicking on the indicator. The indicator is displayed the hole time as an animation, that the user cann scroll down. At the bottom of the page, the indicator is displayed as a button to scroll to t

Awesome Lists containing this project

README

          

# Ngx-Scroll-Indicator

## Frameworks and Languages


Static Badge

Static Badge

Static Badge

## Demo


image

## Description
This Repository contains a simple Angular library to display a scroll indicator at the bottom of the page. The user can scroll to the top of the page by clicking on the indicator. The indicator is displayed the hole time as an animation, that the user cann scroll down. At the bottom of the page, the indicator is displayed as a button to scroll to the top.
The library is easy to use and can be installed via [npm](https://www.npmjs.com/package/@christophhu/ngx-scroll-indicator).

## Installation
```bash
npm i @christophhu/ngx-scroll-indicator
```

## Use
### With default toggle
```html

```

```typescript
import { NgxScrollIndicatorComponent } from "@christophhu/ngx-scroll-indicator";

@Component({
...
imports: [
NgxScrollIndicatorComponent
]
})
export class TestComponent {
constructor() {}
}
```