我有一个单页移动引导站点,当滚动时,当点击导航菜单中的链接时,固定导航栏会覆盖部分标题。我发现这是由 CSS 滚动捕捉点引起的。我试图为所有部分设置scroll-snap-type: none;
类.section
,但它仍然产生错误。如何正确禁用整个页面的 CSS 滚动捕捉点?
问问题
1307 次
1 回答
1
可能会有所帮助。试试下面
* 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 follow.(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;
于 2018-01-03T06:31:27.950 回答