ScrollObserver 回调

在滚动过程中的特定点触发函数。
ScrollObservers 回调函数直接在 onScroll() 参数 Object 中定义。

animate('.square', {
  x: 100,
  autoplay: onScroll({
    container: '.container',
    target: '.section',
    axis: 'y',
    enter: 'bottom top',
    leave: 'top bottom',
    sync: true,
┌──────────────────────────┐
│   onEnter: () => {},     │
│   onLeave: () => {},     ├─ Callbacks
│   onUpdate: () => {},    │
└──────────────────────────┘
  })
});