如何禁用 pagepilling.js 行为?

how to disable pagepilling.js behavior?

我正在使用这个 jquery plugin。 我想在移动设备上禁用此行为。怎么做?

您可以使用 MatchMedia 仅当视口达到一定大小时才加载插件。

    if (matchMedia('only screen and (min-width: 480px)').matches) {
      // enable plugin
    }