yanwsh / videojs-panorama

a plugin for videojs run a full 360 degree panorama video.
http://yanwsh.github.io/videojs-panorama/
Other
485 stars 160 forks source link

How to disable Zoom? #36

Closed j-christopher closed 7 years ago

j-christopher commented 7 years ago

How do you disable zoom controls. Right now scrolling vertically on a mouse zooms the video in and out.

Thanks!

yanwsh commented 7 years ago

You can disable it by setting the parameter "scrollable" to false.

        player.panorama({
            scrollable: false,
        });
j-christopher commented 7 years ago

Perfect, thanks.