
Hi @Donald Symmons,
I think using the Swiper plugin
you can easily achieve the effect you want.
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8" />
<title>Swiper demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.0.5/js/swiper.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.0.5/css/swiper.css" />
<!-- Demo styles -->
<style type="text/css">
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 0;
}
.swiper-container {
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 320px;
background-color: #fff;
overflow: hidden;
border-radius: 8px;
}
.picture {
width: 320px;
height: 320px;
overflow: hidden;
}
.picture img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div class="swiper-container">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide">
<div class="picture">
<img src="images/A/customer-support.JPG" />
</div>
</div>
<div class="swiper-slide">
<div class="picture">
<img src="images/A/customer-support.JPG" />
</div>
</div>
<div class="swiper-slide">
<div class="picture">
<img src="images/A/customer-support.JPG" />
</div>
</div>
</div>
<!-- If we need pagination -->
<div class="swiper-pagination"></div>
<!-- If we need navigation buttons -->
<!-- <div class="swiper-button-prev"></div> -->
<!-- <div class="swiper-button-next"></div> -->
<!-- If we need scrollbar -->
<div class="swiper-scrollbar"></div>
</div>
<!-- Initialize Swiper -->
<script type="text/javascript">
var swiper = new Swiper(".swiper-container", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
autoplay: true,
speed: 500,
coverflowEffect: {
rotate: 20,
stretch: 0,
depth: 350,
modifier: 1,
slideShadows: true
},
pagination: {
el: ".swiper-pagination"
}
});
</script>
</div>
</form>
</body>
</html>
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.