.swiper {
width: 100%;
height: 200px;
margin: 0.5rem auto;
}
.swiper-slide {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-weight: bold;
}
.slide1 {
background-color: #88acbd;
}
.slide2 {
background-color: #99cb1f;
}
.slide3 {
background-color: #e43a47;
}
.swiper-wrapper {
transition-timing-function: linear;
}
const swiper = new Swiper(".swiper", {
speed: 10000,
slidesPerView: 2,
loop: true,
centeredSlides: true,
preventInteractionOnTransition: true,
autoplay: {
delay: 0
}
});