Chrome's hidden CSS scroll-snap threshold and how to change it

后端 未结 3 1396
借酒劲吻你
借酒劲吻你 2021-02-12 13:19

I have a container:

scroll-snap-points-y: repeat(100%);
snap-type: mandatory;
snap-type: y mandatory;

And three children:

heigh         


        
3条回答
  •  不要未来只要你来
    2021-02-12 13:51

    You can temporarily remove scroll-snap-align on :hover to make it go the next/previous, I guess:

    #carousel.snap > div:hover {
      scroll-snap-align:initial;
    }
    

    https://codepen.io/anon/pen/BXwYPa

提交回复
热议问题