最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Slick slider "position: fixed" - Stack Overflow

programmeradmin2浏览0评论

I'm using slick.js and trying to position the slider at the bottom of the page.

I'm using position:fixed but it simply breaks the slider, meaning every movement causes each cell to grow, double in size I think.

Is there a workaround for this?

Here's my code:

<div class="cappa__holder">
    <div class="cappa">111</div>
    <div class="cappa">222</div>
    <div class="cappa">333</div>
    <div class="cappa">444</div>
    <div class="cappa">555</div>
    <div class="cappa">666</div>
    <div class="cappa">777</div>
</div>

.cappa__holder {
    /* unment next line to see it break */
    //position: fixed; 
    bottom: 0;
}

.cappa {
    text-align: center;
    background:#f1f1f1;
    margin: 4px;
    border: 1px solid blue;
}

$(document).ready(function(){
    $('.cappa__holder').slick({
      infinite: true,
      arrows: true,
      slidesToShow: 4,
      slidesToScroll: 4,
      speed: 600
    });
});

Here's a fiddle to show the problem

I'm using slick.js and trying to position the slider at the bottom of the page.

I'm using position:fixed but it simply breaks the slider, meaning every movement causes each cell to grow, double in size I think.

Is there a workaround for this?

Here's my code:

<div class="cappa__holder">
    <div class="cappa">111</div>
    <div class="cappa">222</div>
    <div class="cappa">333</div>
    <div class="cappa">444</div>
    <div class="cappa">555</div>
    <div class="cappa">666</div>
    <div class="cappa">777</div>
</div>

.cappa__holder {
    /* unment next line to see it break */
    //position: fixed; 
    bottom: 0;
}

.cappa {
    text-align: center;
    background:#f1f1f1;
    margin: 4px;
    border: 1px solid blue;
}

$(document).ready(function(){
    $('.cappa__holder').slick({
      infinite: true,
      arrows: true,
      slidesToShow: 4,
      slidesToScroll: 4,
      speed: 600
    });
});

Here's a fiddle to show the problem

Share Improve this question edited Nov 15, 2015 at 15:24 Alex 8,6956 gold badges40 silver badges50 bronze badges asked Nov 15, 2015 at 14:54 StudioTimeStudioTime 24.1k40 gold badges128 silver badges215 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Problem: when .cappa__holder has position:fixed; and does not have height, the slick can not calculate the size of slides. However, you only need to give width to the .cappa__holder to solve your problem(for example width:100%).

Jsfiddle

发布评论

评论列表(0)

  1. 暂无评论