@pi0/framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
21 lines (18 loc) • 308 B
text/less
/* === Images Lazy Loading === */
.lazy-loaded.lazy-fadeIn {
animation: lazyFadeIn 600ms;
}
@keyframes lazyFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
& when (@include-ios-theme) {
@import url('./lazy-ios.less');
}
& when (@include-md-theme) {
@import url('./lazy-md.less');
}