I am using owl carousel spotlight with scale effect.
The overflow:hidden
for the outer div is not working in IE11 during the scale transition
.spotlight{
border: 1px solid red;
height: 200px;
overflow: hidden;
}
img{
transition: all ease 2s;
-ms-transform: scale(1);
transform: scale(1);
}
.active img{
-ms-transform: scale(1.5);
transform: scale(1.5);
}
<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>
<script>
$(function(){
$('.owl-carousel').owlCarousel({
loop:true,
autoplay: true,
items: 1,
margin:10,
nav:true,
animateOut: 'fadeOut'
});
})
</script>
Fiddle - https://jsfiddle.net/jt2wLx6v/7/