Hi @Donald Symmons,
The Swiper Coverflow Effect does not include an opacity property, but I think you could achieve a similar result by setting a depth property.
https://swiperjs.com/swiper-api#coverflow-effect
The code below includes some modifications to the Coverflow effect parameters.
<script type="text/javascript">
var swiper = new Swiper(".swiper-container", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
autoplay: true,
speed: 500,
coverflowEffect: {
rotate: 0,
stretch: 80,
depth: 500,
modifier:1 ,
slideShadows: true,
},
pagination: {
el: ".swiper-pagination"
}
});
</script>
The screenshot below is the rendered result.
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.