In my project, I have implemented a vertical slider with mousewheel control using SwiperJS from https://swiperjs.com/. Although the slider is working perfectly fine, I am looking to fix the positions while scrolling on the page similar to the example provided in section four of this link: https://amernitech.com/dev/. Could you please share a sample demo for achieving this?
//html
<!-- Swiper -->
<div class="swiper mySwiper hide-tabview page" style="background:green;">
<div class="swiper-wrapper ">
<div class="swiper-slide ">
<section>
<div class="container">
<div class="row" style="flex-wrap: nowrap;">
<div class="col-xl-6 col-lg-6 col-md-6 " style="align-self:center;">
<div class="shadow-number">01</div>
<h2 class="heading heading-h3 text-white"> Upload your work</h2>
<p class="heading-L mt-4" style="color: #B7B7B7;">Get started by uploading your very own creations of all types to any array of games and projects.</p>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 " >
<img class="img-fluid custom-border-radius slider-image-wd" src="{{asset('public/assets/img/upload1v1new.png')}}"alt="" style=" margin: 0 auto;display: table;">
</div>
</div>
</div>
</section>
</div>
<div class="swiper-slide">
<section>
<div class="container">
<div class="row" style="flex-wrap: nowrap;">
<div class="col-xl-6 col-lg-6 col-md-6 " style="align-self:center;">
<div class="shadow-number">02</div>
<h2 class="heading heading-h3 text-white">Create Collections</h2>
<p class="heading-L mt-4" style="color: #B7B7B7;">If you want to create multiple creations for one game, we provide you with the ability to create “Collections”, so you can bundle all of your work together! </p>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 " >
<img class="img-fluid custom-border-radius mt-2 slider-image-wd" src="{{asset('public/assets/img/createmusic1.png')}}"alt="" style=" margin: 0 auto;display: table;">
</div>
</div>
</div>
</section>
</div>
<div class="swiper-slide">
<section>
<div class="container">
<div class="row" style="flex-wrap: nowrap;">
<div class="col-xl-6 col-lg-6 col-md-6 " style="align-self:center;">
<div class="shadow-number">03</div>
<h2 class="heading heading-h3 text-white">Earn Today!</h2>
<p class="heading-L mt-4" style="color: #B7B7B7;">Start earning for your creations today! We provide advanced data analytics for all the work product you produce. This way you have a handle on your projects from Day 1.</p>
</div>
<div class="col-xl-6 col-lg-6 col-md-6" >
<img class="img-fluid custom-border-radius slider-image-wd" src="{{asset('public/assets/img/dashboard1n.png')}}"alt="" style=" margin: 0 auto;display: table;">
</div>
</div>
</div>
</section>
</div>
</div>
<div class="swiper-pagination"></div>