--- title: scroll-snap-points-y slug: Web/CSS/scroll-snap-points-y tags: - CSS - css snap translation_of: Web/CSS/scroll-snap-points-y ---
scroll-snap-points-y
CSS属性定义滚动容器中内容的snap点的垂直位置。
{{cssinfo}}
/* 关键值 */ scroll-snap-points-y: none; /* 重复的snap点 */ scroll-snap-points-y: repeat(400px); /* 全局值 */ scroll-snap-points-y: inherit; scroll-snap-points-y: initial; scroll-snap-points-y: unset;
none
repeat(<长度>)
<div id="container"> <div>1</div> <div>2</div> <div>3</div> </div>
#container { height: 200px; width: 220px; overflow-x: hidden; overflow-y: auto; scroll-snap-points-y: repeat(200px); scroll-snap-type: mandatory; font-size: 0; } #container > div { width: 200px; height: 200px; display: inline-block; line-height: 200px; text-align: center; font-size: 100px; } #container > div:nth-child(even) { background-color: #87EA87; } #container > div:nth-child(odd) { background-color: #87CCEA; }
{{EmbedLiveSample("Example", 220, 220)}}
此属性曾定义在early draft of CSS Scroll Snap Points Module中,但是后来在in favor of element-based snapping规范中被移出。