我正在使用 Material Design Lite 在 Web 视图中为应用程序创建 UI,但是我遇到了一个问题,即我无法在滑动时部署导航抽屉。
我正在使用这个 jquery 代码来识别滑动事件
$(function() {
$("#test").swipe( {
//Generic swipe handler for all directions
swipeRight:function(event, direction, distance, duration, fingerCount) {
$(this).text("Event Triggered" );
},
});
});
从这里我不确定如何打开导航抽屉。我希望整个屏幕“可滑动”,尤其是左边缘。触发此滑动处理程序时,如何打开导航栏?