87 lines
1.8 KiB
JavaScript
87 lines
1.8 KiB
JavaScript
//simple-pricing-slider
|
|
|
|
$('.pricing-slider-container').slick({
|
|
infinite: true,
|
|
slidesToShow: 3,
|
|
slidesToScroll: 1,
|
|
arrows: false,
|
|
responsive: [
|
|
{
|
|
breakpoint: 991,
|
|
settings: {
|
|
slidesToShow: 2,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 600,
|
|
settings: {
|
|
autoplay: true,
|
|
autoplaySpeed: 2000,
|
|
slidesToShow: 1,
|
|
slidesToScroll: 1
|
|
}
|
|
},
|
|
]
|
|
});
|
|
|
|
//simple-pricing-container
|
|
$('.simple-pricing-container').slick({
|
|
infinite: true,
|
|
slidesToShow: 4,
|
|
slidesToScroll: 1,
|
|
|
|
responsive: [
|
|
{
|
|
breakpoint: 1440,
|
|
settings: {
|
|
slidesToShow: 3,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 991,
|
|
settings: {
|
|
slidesToShow: 2,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 600,
|
|
settings: {
|
|
autoplay: true,
|
|
autoplaySpeed: 2000,
|
|
slidesToShow: 1,
|
|
slidesToScroll: 1
|
|
}
|
|
},
|
|
]
|
|
});
|
|
|
|
//flip-pricing-container
|
|
|
|
$('.flip-pricing-container').slick({
|
|
infinite: true,
|
|
slidesToShow: 4,
|
|
slidesToScroll: 1,
|
|
responsive: [
|
|
{
|
|
breakpoint: 1440,
|
|
settings: {
|
|
slidesToShow: 3,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 992,
|
|
settings: {
|
|
slidesToShow: 2,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 600,
|
|
settings: {
|
|
autoplay: true,
|
|
autoplaySpeed: 2000,
|
|
slidesToShow: 1,
|
|
slidesToScroll: 1
|
|
}
|
|
},
|
|
]
|
|
}); |