Files
ionic-framework/ionic/components/img/img.scss
Adam Bradley 7a827277a9 feat(img): create ion-img
ion-img is useful for virtual scrolling. It allows ionic to control
image HTTP requests, along with controlling when images should be
rendered within the DOM.
2016-03-23 23:51:20 -05:00

31 lines
391 B
SCSS

@import "../../globals.core";
// Img
// --------------------------------------------------
ion-img {
position: relative;
display: block;
}
ion-img img {
display: block;
}
ion-img .img-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ddd;
transition: opacity 200ms;
}
ion-img.img-loaded .img-placeholder {
opacity: 0;
}