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