未找到NativePageTransitions的exec代理

时间:2017-08-10 09:41:21

标签: javascript html phonegap-plugins phonegap

我已经添加了cli插件 github.com

这是我的代码

 <button onclick="slide('right', 'dashboard.html')">back</button>


 <script type="text/javascript"> 
    function slide(direction,href) {
      window.plugins.nativepagetransitions.slide(
      {
        'duration': 400,
        'direction': direction,
        'iosdelay': 50,
        'androiddelay': 120,
        'winphonedelay':800,
        'href': href
      },
      function () {
        console.log('slide transition finished');
      });
    }

</script> 

我也已添加

<script type="text/javascript" src="cordova.js"></script>

这是我的完整代码 pastebin.com

但是没有用,我在控制台上有错误 找不到NativePageTransitions的exec代理

1 个答案:

答案 0 :(得分:0)

在JS中你只有1:

function slide(href)

但是你的html中你有2:

slide('right', 'dashboard.html')