Почему если поместить в слайдер iframe, то перестает работать перемещения слайдов мышью? На других страницах все норм(фото).
Вот ссылка на слайдер -
https://tokmaganbet.github.io/sites/autolevin/revi...
Разметка :
<div class="slider-reviews owl-theme">
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
<div class="item"><iframe height="220" src="https://www.youtube.com/embed/ctWheXPtkN8?autohide=1" frameborder="0" allowfullscreen></iframe></div>
</div>
$(document).ready(function() {
$('.slider-reviews').owlCarousel({
loop:true,
margin:75,
nav:true,
dots: true,
mouseDrag: true,
touchDrag: true,
autoWidth: true,
navText: ['<img src="./img/prev.png">', '<img src="./img/next.png">'],
responsive:{
0:{
items:1,
center:true
},
600:{
items:2
},
1000:{
items:3
}
}
});
});