Files
Gainsight/Custom_Templates/customer_templates/Skuid/_carousels.html.liquid
2022-11-11 21:54:43 -05:00

25 lines
1.1 KiB
Plaintext

<script type="text/javascript">
$(document).ready(function() {
if ($('.achivements-carousel').length > 0) {
$('.achivements-carousel').slick({
slidesToShow: 1,
slidesToScroll: 1,
dots: true,
infinite: true,
autoplay: false,
autoplaySpeed: 5000,
cssEase: 'linear',
prevArrow: '<svg viewBox="0 0 20 20" class="_1ycOA _left"><path d="M12 16a.997.997 0 0 1-.707-.293l-5-5a.999.999 0 0 1 0-1.414l5-5a.999.999 0 1 1 1.414 1.414L8.414 10l4.293 4.293A.999.999 0 0 1 12 16" fill-rule="evenodd"></path></svg>',
nextArrow: '<svg viewBox="0 0 20 20" class="_1ycOA _right"><path d="M8 16a.999.999 0 0 1-.707-1.707L11.586 10 7.293 5.707a.999.999 0 1 1 1.414-1.414l5 5a.999.999 0 0 1 0 1.414l-5 5A.997.997 0 0 1 8 16" fill-rule="evenodd"></path></svg>',
responsive: [{
breakpoint: 991,
settings: {
dots: false
}
}]
})
}
});
</script>