https://github.com/HsuanXyz/ionic2-indexed-scroll
ionic2 indexed scroll bar DEMO
https://github.com/HsuanXyz/ionic2-indexed-scroll
demo fast-scroll indexed-scroll ionic scrollbar
Last synced: 7 days ago
JSON representation
ionic2 indexed scroll bar DEMO
- Host: GitHub
- URL: https://github.com/HsuanXyz/ionic2-indexed-scroll
- Owner: hsuanxyz
- License: mit
- Created: 2017-02-28T07:58:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-28T09:13:08.000Z (over 7 years ago)
- Last Synced: 2025-04-04T20:12:50.610Z (about 1 month ago)
- Topics: demo, fast-scroll, indexed-scroll, ionic, scrollbar
- Language: TypeScript
- Size: 937 KB
- Stars: 40
- Watchers: 3
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ionic2-components - Indexed Scroll Examples
- Awesome - Indexed Scroll Examples
README
# ionic2-indexed-scroll
ionic2 indexed scroll bar DEMO
## Running
* Clone this repository: `git clone https://github.com/HsuanXyz/ionic2-indexed-scroll.git`.
* Run `npm install` from the project root.
* If you do not install the ionic CLI (`npm install -g ionic`)
* Run `ionic serve` in a terminal from the project root.## App Preview
## File Structure
```
.
├── LICENSE
├── README.md
├── config.xml
├── ionic.config.json
├── package.json
├── resources
├── src
│ ├── index.html
│ ├── app
│ │ ├── app.component.ts
│ │ ├── app.html
│ │ ├── app.module.ts
│ │ ├── app.scss
│ │ └── main.ts
│ ├── assets
│ │ ├── data
│ │ │ └── contacts.json * ContactsData
│ │ └── icon
│ │ └── favicon.ico
│ ├── pages
│ │ ├── about
│ │ │ ├── about.html
│ │ │ ├── about.scss
│ │ │ └── about.ts
│ │ ├── contact
│ │ │ ├── contact.html
│ │ │ ├── contact.scss
│ │ │ └── contact.ts
│ │ ├── home
│ │ │ ├── home.html * Contacts template
│ │ │ ├── home.scss * Contacts stylesheet
│ │ │ └── home.ts * Contacts code
│ │ └── tabs
│ │ ├── tabs.html
│ │ └── tabs.ts
│ ├── providers
│ │ └── contacts.ts * ContactsData code
│ ├── service-worker.js
│ └── theme
│ └── variables.scss
├── tsconfig.json
└── tslint.json
```
## Environment
```
global packages:@ionic/cli-utils : 1.0.0
Ionic CLI : 3.0.0local packages:
@ionic/app-scripts : 1.3.7
@ionic/cli-plugin-ionic-angular : 1.0.0
Ionic Framework : ionic-angular 3.2.0```