html + css: prevent zooming on iOS while tapping fast
Fast tapping on iOS device is like double click. To prevent zooming fill into css:
:root {
touch-action:action: pan-x pan-y;y;
height:height: 100%100%
}
If it's not working on :root try html.
Source: https://stackoverflow.com/a/60516252/13334678