owl carousel test

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/assets/owl.carousel.min.css">
<div class="spotlight">
<div class="owl-carousel owl-theme">
    <div class="item"><img src="https://placeimg.com/640/480/any" alt=""></div>
    <div class="item"><img src="https://placeimg.com/640/480/any" alt=""></div>
    <div class="item"><img src="https://placeimg.com/640/480/any" alt=""></div>
</div>
</div>

CSS

.spotlight{
  border: 1px solid red;
  height: 200px;
  overflow: hidden;
}
img{
  transition: all ease 2s;
  transform: scale(1);
}
.active img{
  transform: scale(1.5);
}

JavaScript

$(function(){
  $('.owl-carousel').owlCarousel({
      loop:true,
      autoplay: true,
      items: 1,
      margin:10,
      nav:true,
      animateOut: 'fadeOut'
  });
})