Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten. Erfahre mehr über dieses Experiment.

View in English Always switch to English

scroll-snap-type

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨April 2022⁩.

Die scroll-snap-type CSS Eigenschaft wird auf einen Scroll-Container angewendet und aktiviert das Scroll-Snapping, indem sie die Richtung und Strenge der Durchsetzung von Snap-Punkten innerhalb des Snap-Ports festlegt.

Probieren Sie es aus

scroll-snap-type: none;
scroll-snap-type: x mandatory;
scroll-snap-type: x proximity;
<section class="default-example" id="default-example">
  <div id="example-element">
    <div>1</div>
    <div>2</div>
    <div>3</div>
  </div>
  <div class="info">Scroll »</div>
</section>
.default-example {
  flex-wrap: wrap;
}

.default-example .info {
  width: 100%;
  padding: 0.5em 0;
  font-size: 90%;
}

#example-element {
  text-align: left;
  width: 250px;
  height: 250px;
  overflow-x: scroll;
  display: flex;
  box-sizing: border-box;
  border: 1px solid black;
}

#example-element > div {
  flex: 0 0 250px;
  width: 250px;
  background-color: rebeccapurple;
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

#example-element > div:nth-child(even) {
  background-color: white;
  color: rebeccapurple;
}

Wenn sich der Inhalt im Scroll-Port ändert — zum Beispiel, wenn Inhalt hinzugefügt, verschoben, gelöscht oder in der Größe geändert wird — snappt der Scroll-Container zurück zu dem vorher gesnappten Inhalt, sofern dieser noch vorhanden ist.

Wenn der Wert einer scroll-snap-bezogenen Eigenschaft, wie scroll-snap-type oder scroll-margin, geändert wird, snappt der Scroll-Container basierend auf dem aktuellen Wert von scroll-snap-type neu.

Die genaue Angabe von Animationen oder Physik, die zur Durchsetzung dieser Snap-Punkte verwendet werden, wird nicht durch diese Eigenschaft abgedeckt, sondern dem Benutzeragenten überlassen.

Syntax

css
/* No snapping */
scroll-snap-type: none;

/* Keyword values for snap axes */
scroll-snap-type: x;
scroll-snap-type: y;
scroll-snap-type: block;
scroll-snap-type: inline;
scroll-snap-type: both;

/* Optional keyword values for snap strictness */
/* mandatory | proximity */
scroll-snap-type: x mandatory;
scroll-snap-type: y proximity;
scroll-snap-type: both mandatory;

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

Werte

none

Wenn der visuelle Viewport dieses Scroll-Containers gescrollt wird, müssen Snap-Punkte ignoriert werden.

x

Der Scroll-Container snappt nur zu Snap-Positionen auf seiner horizontalen Achse.

y

Der Scroll-Container snappt nur zu Snap-Positionen auf seiner vertikalen Achse.

block

Der Scroll-Container snappt nur zu Snap-Positionen auf seiner Block-Achse.

inline

Der Scroll-Container snappt nur zu Snap-Positionen auf seiner Inline-Achse.

both

Der Scroll-Container snappt unabhängig in beiden Achsen zu Snap-Positionen (möglicherweise snapping zu unterschiedlichen Elementen in jeder Achse).

mandatory

Der visuelle Viewport dieses Scroll-Containers muss zu einer Snap-Position snappen, wenn er aktuell nicht gescrollt ist.

proximity

Der visuelle Viewport dieses Scroll-Containers kann zu einer Snap-Position snappen, wenn er aktuell nicht gescrollt ist. Der Benutzeragent entscheidet, ob er snappt oder nicht, basierend auf den Scroll-Parametern. Dies ist die Standard-Snap-Strenge, wenn eine Snap-Achse angegeben ist.

Formale Definition

Anfangswertnone
Anwendbar aufalle Elemente
VererbtNein
Berechneter Wertwie angegeben
Animationstypdiskret

Formale Syntax

scroll-snap-type = 
none |
[ x | y | block | inline | both ] [ mandatory | proximity ]?

Beispiele

Snap in unterschiedlichen Achsen

HTML

html
<main>
  <section class="x mandatory-scroll-snapping" dir="ltr">
    <div>X Mand. LTR</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="x proximity-scroll-snapping" dir="ltr">
    <div>X Prox. LTR</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="y mandatory-scroll-snapping" dir="ltr">
    <div>Y Mand. LTR</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="y proximity-scroll-snapping" dir="ltr">
    <div>Y Prox. LTR</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="x mandatory-scroll-snapping" dir="rtl">
    <div>X Mand. RTL</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="x proximity-scroll-snapping" dir="rtl">
    <div>X Prox. RTL</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="y mandatory-scroll-snapping" dir="rtl">
    <div>Y Mand. RTL</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
  <section class="y proximity-scroll-snapping" dir="rtl">
    <div>Y Prox. RTL</div>
    <div>2</div>
    <div>3</div>
    <div>4</div>
    <div>5</div>
  </section>
</main>

CSS

css
/* scroll-snap */
.x.mandatory-scroll-snapping {
  scroll-snap-type: x mandatory;
}
.x.proximity-scroll-snapping {
  scroll-snap-type: x proximity;
}
.y.mandatory-scroll-snapping {
  scroll-snap-type: y mandatory;
}
.y.proximity-scroll-snapping {
  scroll-snap-type: y proximity;
}

div {
  text-align: center;
  scroll-snap-align: center;
  flex: none;
}

Ergebnisse

Spezifikationen

Specification
CSS Scroll Snap Module Level 1
# scroll-snap-type

Browser-Kompatibilität

Siehe auch