Advertisement
Guest User

Disable touch zooming, mobile scrolling, and right click

a guest
Jul 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <!--Disable touch zooming, mobile scrolling, and right click on desktop-->
  2. <body id="root" style="touch-action: none; overflow: hidden; overscroll-behavior-y: contain; position: fixed;" oncontextmenu="return false">
  3.     <noscript>You need to enable JavaScript to run this app.</noscript>
  4. </body>
  5.  
  6. <footer>
  7.     <!-- Prevent mobile scrolling/refreshing -->
  8.     <script>
  9.         document.addEventListener('touchmove', function(e) {
  10.       e.preventDefault();
  11.     }, { passive: false });
  12.     </script>
  13. </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement