Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ihadeed/ionic-parallax
Parallax Module for Ionic Framework 2+
https://github.com/ihadeed/ionic-parallax
ionic ionic-plugin ionic2 ionic3 parllax
Last synced: 3 months ago
JSON representation
Parallax Module for Ionic Framework 2+
- Host: GitHub
- URL: https://github.com/ihadeed/ionic-parallax
- Owner: ihadeed
- Created: 2017-05-04T05:05:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-05T20:42:44.000Z (over 7 years ago)
- Last Synced: 2024-10-10T17:22:20.826Z (4 months ago)
- Topics: ionic, ionic-plugin, ionic2, ionic3, parllax
- Language: TypeScript
- Size: 12.7 KB
- Stars: 10
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ionic-parallax
WIP, here's a quick usage example:
```bash
npm i --save ionic-parallax
``````ts
import { ParallaxModule } from 'ionic-parallax';@NgModule({
imports: [
...
ParallaxModule
]
})
``````html
```
```scss
ion-card {
position: relative;
> img[parallax] {
position: absolute;
height: inherit;
}
}
```