◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
MDN详情
sroll-snap-type:none | [ x | y | block | inline | both ] [ mandatory | proximity ]?
一般使用:
scroll-snap-type: x mandatory;
scroll-padding:定义滚动盒子的padding
注意正常的padding在scroll-snap中用来控制停止后相对滚动容器的位置会失效
scroll-snap-stop: normal | always
控制停止元素的行为,normal根据滚动距离计算要停止的元素,always:无视滚动距离,只会停止在下一个元素,比如滑动1000px还是停止在下一个元素
scroll-snap-align:start | center | end;
滚动停止后,元素所在的位置,类比justify-content 属性的 flex-start | flex-end | center
下面三个分别对应start | center | end,表示滚动结束后元素停止容器开头、中心、结尾
scroll-margin:定义某个子元素的margin
用于精细控制滚动停止后元素相对于滚动容器的位置
<ul class="snap"> <li>1</li> <li>2</li> <li>3</li> ... </ul> .snap { overflow-x: auto; scroll-snap-type: y mandatory; scroll-padding-top: 30px; } li { scroll-snap-align: start; }
代码示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> .section { height: 200px; width: 400px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; } .section__item { /* scroll-snap-align: start; */ height: 200px; width: 200px; margin: 0 100px; flex: none; scroll-padding-right: 40px; scroll-snap-align: end; } .section__item:nth-child(odd) { background: red; } .section__item:nth-child(even) { background: green; } </style> </head> <body> <div class="section"> <div class="section__item">Item 1</div> <div class="section__item">Item 2</div> <div class="section__item">Item 3</div> <div class="section__item">Item 4</div> <div class="section__item">Item 5</div> </div> <script> </script> </body> </html>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。