Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eseom/ionic-lazy-img
ionic image lazy loader with unloader
https://github.com/eseom/ionic-lazy-img
Last synced: 3 days ago
JSON representation
ionic image lazy loader with unloader
- Host: GitHub
- URL: https://github.com/eseom/ionic-lazy-img
- Owner: eseom
- License: mit
- Created: 2016-11-20T09:14:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-20T14:29:53.000Z (about 8 years ago)
- Last Synced: 2024-04-29T00:06:38.021Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ionic-lazy-img
=====================## Demo
preparing## Quick Start
```sh
bower install ionic-lazy-img --saveor
npm install ionic-lazy-img --save
``````html
```
```css
.lazy-img-hide {
opacity: 0;
transition: opacity 0.5s linear;
}
.lazy-img-show {
opacity: 1;
}
.lazy-img-background {
background: #f8f8f8;
}
``````javascript
angular.module('starter',
['ionic', 'ionicLazyImg'])
`````` html
.
.
.
.
.
.```