Infinite scroll
Angular Bootstrap 5 Infinite scroll
This feature adds a scroll event listener (to the window or the component it's attached to if it has the overflow-y property set to scroll) and calls a callback method every time a user reaches an end of a page/container.
Note: Read the API tab to find all available options and advanced customization
Basic example
Scroll down the container below to add more items.
Note: Your element should be scrollable, for example, it should have
overflow-y: scroll
property like in the example below.
- Angry
- Dizzy
- Flushed
- Frown
- Grimace
- Grin
Direction
Use [direction]
input to define the scrolling direction.
Spinners and asynchronous data
Infinite scroll - API
Import
Inputs
Name | Type | Default | Description |
---|---|---|---|
direction
|
MdbInfiniteScrollDirection | 'vertical' |
Defines scroll direction (horizontal or vertical) |
window
|
boolean | false |
Defines window as a scroll container |
Outputs
Name | Type | Description |
---|---|---|
infiniteScrollCompleted
|
EventEmitter<any> | Event fired when scroll reaches bottom of a container |