您好我试图让我的滑块响应,我有两个问题,一,我尝试更改编辑器代码中的行宽仍然没有改变,也想知道是否有人知道如何删除视频控件与此插件。
答案 0 :(得分:-1)
光滑滑块支持响应断点。以下示例直接取自其文档:
$('.yoursliderclass').slick({
centerMode: true,
centerPadding: '60px',
slidesToShow: 3,
responsive: [
{
breakpoint: 768,
settings: {
arrows: false,
centerMode: true,
centerPadding: '40px',
slidesToShow: 3
}
},
{
breakpoint: 480,
settings: {
arrows: false,
centerMode: true,
centerPadding: '40px',
slidesToShow: 1
}
}
]
});