Hello,
Thanks for reporting this. Unfortunately, this might not work as expected, as both of Lazy-Loading and Image Scale uses CSS Transitions. You can consider replacing the existing code with the following:
.imagescale img:not(.initial),
.imagescalein img:not(.initial) {
-webkit-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.imagescale:hover img:not(.initial) {
-webkit-transform: scale(1);
transform: scale(1);
}
.imagescalein img:not(.initial) {
-webkit-transform: scale(1);
transform: scale(1);
}
.imagescalein:hover img:not(.initial) {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
For the Swiper Slider, you will need to follow the same instructions but inside the js/plugins.swiper.js File.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.