H,我使用的是Framework7版本1.4.2,左侧面板上的滑动对我不起作用,我在运行Android Marshmallow的Nexus 5中使用了材质主题。 我已经按照以下方式设置了应用程序:
var mainView = myApp.addView('.view-main', {
material: true,
domCache: true,
uniqueHistory:true,
swipeBackPage:false,
swipePanel:“left”,
swipePanelCloseOpposite:false,
swipePanelOnlyClose:false,
});
有没有人让它工作,如果是的话,而不是我可能做错了。帮助将受到高度赞赏。 提前谢谢。
答案 0 :(得分:0)
我的配置不正确,这就是为什么它不适合我。下面给出了正确的初始化方法。
var myApp = new Framework7({
material: true,
swipeBackPage:false,
swipePanel:"left",
swipePanelCloseOpposite:false,
swipePanelOnlyClose:false
});
var mainView = myApp.addView('.view-main', {
domCache: true,
uniqueHistory:true
});