Swipe to open menu

Swipe to open menu

Beigetreten
Jun 28, 2020
Nachrichten
4,569
Reaktionswert
1,425
Credits
$12,641
The Swipe to open menu has been submitted and is now available for free download. Big thanks to the contribution from our member @axtona !

Add to PAGE_CONTAINER at bottom before </body> closing tags.

And put it between script tags

Swipe at left side to open or close menu.
JavaScript:
(function() {
    var edgeThreshold = 30;
    var swipeThreshold = 80;
    var startX = 0;
    var startY = 0;
    var edgeStart = false;
    document.addEventListener('touchstart', function(e) {
        if (e.touches.length > 1) { edgeStart = false; return; }
        startX = e.touches[0].clientX;
        startY = e.touches[0].clientY...
Read more about this resource...

 
Zurück
Oben