Deftly –
I’m not sure why you would want a swipe to open menu but…
If you are familiar with jQuery, you can use it to create your own swipe (right). So, for a crude rectangular button, you need something like:
<div id="swipeForMenu">
Swipe right for menu ->
</div>
This jQuery should likely be somehwere at the bottom of your page:
jQuery(document).ready(function($) {
$("swipeForMenu").on("swiperight",function(){
do_shortcode([responsive_menu]);
});
}
CSS for the #swipeForMenu div:
#swipeForMenu {
width: 35%;
height: 1.0rem;
font-size: 1.5rem;
color: #444; /* really dark gray */
background-color: lightblue;
border: 2px solid #666; /* medium dark gray */
}
Then, for ResponsiveMenu, set the Click Trigger field to #swipeForMenu in the Look and Feel tab.
Note that this doesn’t include an actual “knob” like the swiping doodads on iOS and Android phone app’s. I don’t know of any way to duplicate that except for writing a native mobile app. (You can do that for Apple iOS devices using Apple’s Xcode development environment with WebKit.) This may not be exactly what you are thinking but, it should give you some ideas. In fact, if you are looking for a menu that hides off-screen to the lef or right, but leaves a small knob/handle indicator, there are at least 2 other responsive menu plugins that do that but, they don’t seem to work as nicely as this one (IMHO).
Hope that helps.
Jeff