Yo uso iframe con carrusel de imágenes. Y este iframe no se puede desplazar en el móvil. No puede desplazar la página hacia abajo cuando toca este iframe. ¿Es posible hacer algo? Aquí está la página con tal iframe.
Si ves el código, puedes encontrar
<iframe frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen="true" srcdoc="" id="iframe:0" style="width: 100%; min-width: 100%; max-width: 100%; height: 100%; min-height: 100%; max-height: 100%; margin: 0px; padding: 0px; border: 0px;"></iframe> Allí, puedes ver scrolling="no" . Esto detiene el desplazamiento.
Entonces puede reemplazar esa etiqueta iframe scrolling="no" excluida.
<iframe frameborder="0" marginwidth="0" marginheight="0" allowfullscreen="true" srcdoc="" id="iframe:0" style="width: 100%; min-width: 100%; max-width: 100%; height: 100%; min-height: 100%; max-height: 100%; margin: 0px; padding: 0px; border: 0px;"></iframe>