Swipe to open menu

Swipe to open menu

Lv.12
Moderating
Bronze Member
Iron Member
Donor Member
Associado
28/06/2020
Mensagens
4.569
Pontuação de reações
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...

 
Voltar
Top