files/en-us/web/css/reference/properties/animation-timeline/scroll/index.md
The scroll() CSS function can be used with the {{cssxref("animation-timeline")}} property to create an anonymous scroll progress timeline, defining the scroller and axis of the timeline.
/* No arguments */
animation-timeline: scroll();
/* <scroller> argument only */
animation-timeline: scroll(nearest);
animation-timeline: scroll(root);
animation-timeline: scroll(self);
/*`<axis>` argument only */
animation-timeline: scroll(block);
animation-timeline: scroll(inline);
animation-timeline: scroll(y);
animation-timeline: scroll(x);
/* <scroller> and <axis> */
animation-timeline: scroll(block nearest);
animation-timeline: scroll(inline root);
animation-timeline: scroll(x self);
<scroller>
nearest
root
self
<axis>
block.The scroll() CSS function can be used as a single value within the comma-separated {{cssxref("animation-timeline")}} property to specify a scroll progress timeline for a {{cssxref("@keyframes")}} animation. It defines the scrollable element (scroller) and scrollbar axis that will provide the animation timeline.
By default, scroll() references the block axis of the nearest ancestor scroll container. The scroller and axis values can be specified in any order.
The following five declarations are equivalent:
animation-timeline: scroll();
animation-timeline: scroll(block);
animation-timeline: scroll(nearest);
animation-timeline: scroll(block nearest);
animation-timeline: scroll(nearest block);
The scroll progress timeline is progressed through by scrolling the scroller horizontally or vertically, depending on the <axis> and writing mode. If the indicated axis does not contain a scrollbar, then the animation timeline will be inactive.
{{CSSSyntax}}
In this example, the #square element is animated using an anonymous scroll progress timeline, which is applied to the element to be animated using the scroll() function.
The timeline in this particular example is provided by the nearest parent element that has (any) scrollbar, from the scrollbar in the block direction.
The HTML for the example is shown below.
<div id="container">
<div id="square"></div>
<div id="stretcher"></div>
</div>
The CSS below defines a square that rotates in alternate directions according to the timeline provided by the animation-timeline property.
In this case, the timeline is provided by scroll(block nearest), which means that it will select the scrollbar in the block direction of the nearest ancestor element that has scrollbars; in this case the vertical scrollbar of the "container" element.
[!NOTE]
blockandnearestare actually the default parameter values, so we could have used justscroll().
#square {
background-color: deeppink;
width: 100px;
height: 100px;
margin-top: 100px;
position: absolute;
bottom: 0;
animation-name: rotateAnimation;
animation-duration: 1ms; /* Firefox requires this to apply the animation */
animation-direction: alternate;
animation-timeline: scroll(block nearest);
}
@keyframes rotateAnimation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
The CSS for the container sets its height to 300px and we also set the container to create a vertical scrollbar if it overflows. The "stretcher" CSS sets the block height to 600px, which forces the container element to overflow. These two together ensure that the container has a vertical scrollbar, which allows it to be used as the source of the anonymous scroll progress timeline.
#container {
height: 300px;
overflow-y: scroll;
position: relative;
}
#stretcher {
height: 600px;
}
@layer no-support {
@supports not (animation-timeline: scroll()) {
body::before {
content: "Your browser doesn't support the CSS `scroll()` function.";
background-color: wheat;
display: block;
text-align: center;
padding: 1em;
}
}
}
Scroll to see the square element being animated.
{{EmbedLiveSample("Setting an anonymous scroll progress timeline", "100%", "320px")}}
{{Specifications}}
{{Compat}}