18 lines
221 B
SCSS
18 lines
221 B
SCSS
/*
|
|
* Owl Carousel - Lazy Load Plugin
|
|
*/
|
|
|
|
.owl-carousel {
|
|
.owl-item {
|
|
.owl-lazy {
|
|
opacity: 0;
|
|
transition: opacity 400ms ease;
|
|
}
|
|
|
|
img.owl-lazy {
|
|
transform-style: preserve-3d;
|
|
}
|
|
}
|
|
}
|
|
|