ScrollObserver settings
ScrollObserver settings properties are defined directly in the onScroll()
parameters Object
.
animate('.square', {
x: 100,
autoplay: onScroll({
┌──────────────────────────┐
│ container: '.container', │
│ target: '.section', ├─ Settings
│ axis: 'y', │
└──────────────────────────┘
enter: 'bottom top',
leave: 'top bottom',
sync: true,
onEnter: () => {},
onLeave: () => {},
onUpdate: () => {},
})
});
In this section