- 2020/06/28
- 4,569
- 1,425
- $12,641
TheSwipe to open menu已提交,现在可免费下载。感谢贡献成员的付出。 @axtona!
Read more about this resource...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...