CUSTOM SLIDER ionic 4

Hello everyone,

we was using this tutorial for our sliders with ionic 3
: https://www.damirscorner.com/blog/posts/20171006-HiddenAdvancedFeaturesOfIonicsSlides.html

for this result: image

However, we have problems implementing it with ionic 4.
Anyone have a solution to get the same result?

thank you

We have temporarily found a solution to look similar with this scss lines:

 .swiper-slide {
        transform: scale(1);

        &-active {
          overflow-x: visible;
          transform: scale(1.5);
          z-index: 10000;
        
        }
      }

and options:

public slideOpts = {
    slidesPerView: 3,
    initialSlide: 1,
    centeredSlides: true
  };