Как мне установить фоновый эффект параллакса внутри гладкой карусели? Заранее спасибо.
.venues-parallax-3{background-image: url(https://images.unsplash.com/photo-157192971120514aae07834efixlib=rb-1.2.1&auto=format&fit=crop&w=1284&q=80);background-repeat: no-repeat;background-position: center;background-size: cover;height: 20vw;background-attachment: fixed;}
<div class="venues-slide">
<div class="venues-parallax-1"></div>
<div class="venues-parallax-2"></div>
<div class="venues-parallax-3"></div>
<script type="text/javascript">
$(document).ready(function(){
$('.venues-slide').slick({
autplay: true,
accessibility: true,
prevArrow: null,
nextArrow: null
});
});