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
- Host: GitHub
- URL: https://github.com/christophhu/ngx-scroll-indicator
- Owner: ChristophHu
- License: mit
- Created: 2025-06-10T06:08:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-03T22:01:43.000Z (12 months ago)
- Last Synced: 2025-08-02T17:37:38.441Z (11 months ago)
- Topics: angular, indicator, ngx, scrolling
- Language: TypeScript
- Homepage: https://christophhu.github.io/ngx-scroll-indicator/
- Size: 702 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ngx-Scroll-Indicator
## Frameworks and Languages


## Demo
## 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() {}
}
```
