有什么方法可以禁用CSS滚动捕捉点?

时间:2018-01-03 06:20:25

标签: css twitter-bootstrap mobile smooth-scrolling scroll-snap-points

我有一个单页的移动引导网站,当滚动时,固定的导航栏会在点击导航菜单中的链接时覆盖部分标题。我发现这是由CSS滚动捕捉点引起的。我尝试在所有部分的scroll-snap-type: none;类上设置.section,但它仍会产生错误。如何正确禁用整个页面的CSS滚动捕捉点?

1 个答案:

答案 0 :(得分:0)

可能会有所帮助。请尝试以下

 * Keyword values */
scroll-snap-type: none;
scroll-snap-type: mandatory;
scroll-snap-type: proximity;

/* Global values */
scroll-snap-type: inherit;
scroll-snap-type: initial;
scroll-snap-type: unset;

和Y一样。(scroll-snap-type-y)

   /* Keyword values */
scroll-snap-type-x: none;
scroll-snap-type-x: mandatory;
scroll-snap-type-x: proximity;

/* Global values */
scroll-snap-type-x: inherit;
scroll-snap-type-x: initial;
scroll-snap-type-x: unset;