I'm using fullpage.js for my website. I have an fixed (horizontally and vertically centered) element above the fullpage-container, so when i swipe over that fixed part on my mobile device, fullpage doesn't recognise the touch event. Scrolling works fine.
The problem exists when the fixed div's are outside the fullpage container and even when they're inside. I'm using the 'fixedElements' Parmeter:
fixedElements: '.circleWrapper',
Should I bind the touch event somehow to the fullpage container?
So I tried css3: false
on the fullpage.js configuration but didn't get it to work so I found the simple solution to just use
pointer-events: none;
on my element infront of the fullpage slides. This is the most simple solution i've found to solve my problem. For any questions about my implementation just ask!