Table of contents

Scroll events

Metro 4 extend scroll event with two service events.

About

In additional to standart scroll event, Metro 4 add two service events: scrollstart and scrollstop. You can use these events such as any others standard events.

Scroll start


                    $(el).on("scrollstart", function(e){
                    ...
                    })
                

Scroll stop


                    $(el).on("scrollstop", function(e){
                    ...
                    })