How to advance an animation by scrolling?

Can i connect like theese animations (https://threejs.org/examples/?q=animation#webgl_morphtargets_horse) to scroll? Is it possible?

You can update the mixer manually inside of a wheel event listener. You can actually see the basic code for this in the following example: https://threejs.org/examples/webgl_animation_skinning_blending

Click on pause/continue and then click on make single step to gradually advance the progress of the animation. This is done by using a specific time delta for updating the mixer which can be adjusted by modulating modify step size.

Thank you, I will try this.