text
16 | 19 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
Vue Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | ## ⚙️ Installation 31 | ### npm 32 | ```bash 33 | $ npm install vue-infinite-viewer 34 | ``` 35 | 36 | ## 🚀 How to use 37 | 38 | ```html 39 | 40 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
Vue Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | ## ⚙️ Installation 31 | ### npm 32 | ```bash 33 | $ npm install vue3-infinite-viewer 34 | ``` 35 | 36 | ## 🚀 How to use 37 | 38 | ```html 39 | 40 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
Preact Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | ## ⚙️ Installation 31 | ### npm 32 | ```bash 33 | $ npm install preact-infinite-viewer 34 | ``` 35 | 36 | ## 🚀 How to use 37 | 38 | ```jsx 39 | import InfiniteViewer from "preact-infinite-viewer"; 40 | 41 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
React Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | ## ⚙️ Installation 31 | ### npm 32 | ```bash 33 | $ npm install react-infinite-viewer 34 | ``` 35 | 36 | ## 🚀 How to use 37 | 38 | ```jsx 39 | import InfiniteViewer from "react-infinite-viewer"; 40 | 41 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
Angular Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | ## ⚙️ Installation 31 | ### npm 32 | ```bash 33 | $ npm install ngx-infinite-viewer 34 | ``` 35 | 36 | ## 🚀 How to use 37 | ```js 38 | import { BrowserModule } from '@angular/platform-browser'; 39 | import { NgModule } from '@angular/core'; 40 | import { AppComponent } from './app.component'; 41 | import { NgInfiniteViewerComponent, NgInfiniteViewerModule } from "ngx-infinite-viewer"; 42 | 43 | @NgModule({ 44 | declarations: [ 45 | AppComponent, 46 | NgInfiniteViewerComponent, 47 | ], 48 | imports: [ 49 | BrowserModule, 50 | // NgInfiniteViewerModule, 51 | ], 52 | providers: [], 53 | bootstrap: [AppComponent] 54 | }) 55 | export class AppModule { } 56 | ``` 57 | ### Template 58 | 59 | ```html 60 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
17 |
20 |
Svelte Infinite Viewer is Document Viewer Component with infinite scrolling. 22 |
23 | 24 |25 | Demo / 26 | API / 27 | Main Project 28 |
29 | 30 | 31 | * [Simple Demo](https://stackblitz.com/edit/vitejs-vite-p14cgg?file=src%2Flib%2FCounter.svelte,src%2FApp.svelte&terminal=dev) 32 | 33 | 34 | ## ⚙️ Installation 35 | ### npm 36 | ```bash 37 | $ npm install svelte-infinite-viewer 38 | ``` 39 | 40 | ## 🚀 How to use 41 | * The viewer's class name must be set globally and use `className` prop. 42 | 43 | ```html 44 | 47 |