LoginSignup
1
1

More than 1 year has passed since last update.

スクロール時にCSSでスナップを効かせる方法

Posted at

画面スクロールをした時にセクションごとにストップさせる方法を見つけたので備忘録

親要素に以下
scroll-snap-type: x mandatory;

子要素に以下を追加することで実装できる
scroll-snap-align: start;

実際のCSSコードはいか
```.section {
display: flex;
overflow-x: auto;
height:100vh;
scroll-snap-type: x mandatory;
}

.section__item {
height:100vh;
scroll-snap-align: start;
}```

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1