Swipe para abrir menu

Swipe para abrir 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
OSwipe to open menufor já sido submetido e está agora disponível para download gratuito. Grande obrigação pela contribuição do nosso membro @axtona!
script>
Add to PAGE_CONTAINER at bottom before </body> closing tags.

Swipe at left side to open or close menu.
</script
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.clientX;
        startY = e.touches.clientY...
Read more about this resource...

 
Voltar
Top